summaryrefslogtreecommitdiffstats
path: root/content/shell/renderer/shell_render_frame_observer.h
blob: 2ef9f3eab8b59dfdb52f15604aa2b3c07c3361a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_SHELL_SHELL_RENDER_FRAME_OBSERVER_H_
#define CONTENT_SHELL_SHELL_RENDER_FRAME_OBSERVER_H_

#include "content/public/renderer/render_frame_observer.h"

namespace blink {
class WebFrame;
}

namespace content {
class RenderFrame;

class ShellRenderFrameObserver : public RenderFrameObserver {
 public:
  explicit ShellRenderFrameObserver(RenderFrame* render_frame);
  virtual ~ShellRenderFrameObserver() {}

 private:
  DISALLOW_COPY_AND_ASSIGN(ShellRenderFrameObserver);
};

}  // namespace content

#endif  // CONTENT_SHELL_SHELL_RENDER_FRAME_OBSERVER_H_