50 lines
1.4 KiB
C++
50 lines
1.4 KiB
C++
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ATOM_RENDERER_ATOM_RENDER_VIEW_OBSERVER_
|
|
#define ATOM_RENDERER_ATOM_RENDER_VIEW_OBSERVER_
|
|
|
|
#include "base/memory/scoped_ptr.h"
|
|
#include "content/public/renderer/render_view_observer.h"
|
|
|
|
namespace base {
|
|
class ListValue;
|
|
}
|
|
|
|
namespace atom {
|
|
|
|
class AtomRendererBindings;
|
|
class AtomRendererClient;
|
|
|
|
class AtomRenderViewObserver : content::RenderViewObserver {
|
|
public:
|
|
explicit AtomRenderViewObserver(content::RenderView* render_view,
|
|
AtomRendererClient* renderer_client);
|
|
|
|
AtomRendererBindings* atom_bindings() const { return atom_bindings_.get(); }
|
|
|
|
protected:
|
|
virtual ~AtomRenderViewObserver();
|
|
|
|
virtual void DidClearWindowObject(WebKit::WebFrame*) OVERRIDE;
|
|
virtual void FrameWillClose(WebKit::WebFrame*) OVERRIDE;
|
|
|
|
private:
|
|
// content::RenderViewObserver implementation.
|
|
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
|
|
|
void OnBrowserMessage(const std::string& channel,
|
|
const base::ListValue& args);
|
|
|
|
scoped_ptr<AtomRendererBindings> atom_bindings_;
|
|
|
|
// Weak reference to renderer client.
|
|
AtomRendererClient* renderer_client_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomRenderViewObserver);
|
|
};
|
|
|
|
} // namespace atom
|
|
|
|
#endif // ATOM_RENDERER_ATOM_RENDER_VIEW_OBSERVER_
|