0b2b9d371e
There is a hack in WebKit to switch to the creation context of exception when under node context, so we need to remember all window contexts. Remove this when we have multi-context node.
33 lines
959 B
C++
33 lines
959 B
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 "content/public/renderer/render_view_observer.h"
|
|
|
|
namespace atom {
|
|
|
|
class AtomRendererClient;
|
|
|
|
class AtomRenderViewObserver : content::RenderViewObserver {
|
|
public:
|
|
explicit AtomRenderViewObserver(content::RenderView* render_view,
|
|
AtomRendererClient* renderer_client);
|
|
|
|
private:
|
|
virtual ~AtomRenderViewObserver();
|
|
|
|
virtual void DidClearWindowObject(WebKit::WebFrame*) OVERRIDE;
|
|
virtual void FrameWillClose(WebKit::WebFrame*) OVERRIDE;
|
|
|
|
// Weak reference to renderer client.
|
|
AtomRendererClient* renderer_client_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomRenderViewObserver);
|
|
};
|
|
|
|
} // namespace atom
|
|
|
|
#endif // ATOM_RENDERER_ATOM_RENDER_VIEW_OBSERVER_
|