Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / content / shell / renderer / shell_render_frame_observer.h
blob2ef9f3eab8b59dfdb52f15604aa2b3c07c3361a0
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.
5 #ifndef CONTENT_SHELL_SHELL_RENDER_FRAME_OBSERVER_H_
6 #define CONTENT_SHELL_SHELL_RENDER_FRAME_OBSERVER_H_
8 #include "content/public/renderer/render_frame_observer.h"
10 namespace blink {
11 class WebFrame;
14 namespace content {
15 class RenderFrame;
17 class ShellRenderFrameObserver : public RenderFrameObserver {
18 public:
19 explicit ShellRenderFrameObserver(RenderFrame* render_frame);
20 virtual ~ShellRenderFrameObserver() {}
22 private:
23 DISALLOW_COPY_AND_ASSIGN(ShellRenderFrameObserver);
26 } // namespace content
28 #endif // CONTENT_SHELL_SHELL_RENDER_FRAME_OBSERVER_H_