Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / content / shell / renderer / shell_render_view_observer.h
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_SHELL_SHELL_RENDER_VIEW_OBSERVER_H_
6 #define CONTENT_SHELL_SHELL_RENDER_VIEW_OBSERVER_H_
7
8 #include "content/public/renderer/render_view_observer.h"
9
10 namespace blink {
11 class WebFrame;
12 }
13
14 namespace content {
15
16 class RenderView;
17
18
19 class ShellRenderViewObserver : public RenderViewObserver {
20  public:
21   explicit ShellRenderViewObserver(RenderView* render_view);
22   virtual ~ShellRenderViewObserver() {}
23
24  private:
25   // RenderViewObserver implementation.
26   virtual void DidClearWindowObject(blink::WebLocalFrame* frame,
27                                     int world_id) OVERRIDE;
28
29   DISALLOW_COPY_AND_ASSIGN(ShellRenderViewObserver);
30 };
31
32 }  // namespace content
33
34 #endif  // CONTENT_SHELL_SHELL_RENDER_VIEW_OBSERVER_H_