a9dcce82ed
* Reverts 370476c4af
in favor of moving the previous logic to the new RenderFrameObserver instead of RenderViewObserver
Fixes #12045
36 lines
913 B
C++
36 lines
913 B
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ATOM_RENDERER_ATOM_RENDER_VIEW_OBSERVER_H_
|
|
#define ATOM_RENDERER_ATOM_RENDER_VIEW_OBSERVER_H_
|
|
|
|
#include "base/strings/string16.h"
|
|
#include "content/public/renderer/render_view_observer.h"
|
|
#include "third_party/WebKit/public/web/WebLocalFrame.h"
|
|
|
|
namespace base {
|
|
class ListValue;
|
|
}
|
|
|
|
namespace atom {
|
|
|
|
class AtomRendererClient;
|
|
|
|
class AtomRenderViewObserver : public content::RenderViewObserver {
|
|
public:
|
|
explicit AtomRenderViewObserver(content::RenderView* render_view,
|
|
AtomRendererClient* renderer_client);
|
|
|
|
protected:
|
|
virtual ~AtomRenderViewObserver();
|
|
|
|
private:
|
|
void OnDestruct() override;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomRenderViewObserver);
|
|
};
|
|
|
|
} // namespace atom
|
|
|
|
#endif // ATOM_RENDERER_ATOM_RENDER_VIEW_OBSERVER_H_
|