Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(507)

Side by Side Diff: content/public/renderer/render_frame_observer.h

Issue 2628053003: Remove extension group from DOMWrapperWorld. (Closed)
Patch Set: Fix GCCallbackTest Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_FRAME_OBSERVER_H_ 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_FRAME_OBSERVER_H_
6 #define CONTENT_PUBLIC_RENDERER_RENDER_FRAME_OBSERVER_H_ 6 #define CONTENT_PUBLIC_RENDERER_RENDER_FRAME_OBSERVER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 // Called when a provisional load is about to commit in a frame. This is 60 // Called when a provisional load is about to commit in a frame. This is
61 // dispatched just before the Javascript unload event. 61 // dispatched just before the Javascript unload event.
62 virtual void WillCommitProvisionalLoad() {} 62 virtual void WillCommitProvisionalLoad() {}
63 virtual void DidCommitProvisionalLoad(bool is_new_navigation, 63 virtual void DidCommitProvisionalLoad(bool is_new_navigation,
64 bool is_same_page_navigation) {} 64 bool is_same_page_navigation) {}
65 virtual void DidStartProvisionalLoad() {} 65 virtual void DidStartProvisionalLoad() {}
66 virtual void DidFailProvisionalLoad(const blink::WebURLError& error) {} 66 virtual void DidFailProvisionalLoad(const blink::WebURLError& error) {}
67 virtual void DidFinishLoad() {} 67 virtual void DidFinishLoad() {}
68 virtual void DidFinishDocumentLoad() {} 68 virtual void DidFinishDocumentLoad() {}
69 virtual void DidCreateScriptContext(v8::Local<v8::Context> context, 69 virtual void DidCreateScriptContext(v8::Local<v8::Context> context,
70 int extension_group,
71 int world_id) {} 70 int world_id) {}
72 virtual void WillReleaseScriptContext(v8::Local<v8::Context> context, 71 virtual void WillReleaseScriptContext(v8::Local<v8::Context> context,
73 int world_id) {} 72 int world_id) {}
74 virtual void DidClearWindowObject() {} 73 virtual void DidClearWindowObject() {}
75 virtual void DidChangeManifest() {} 74 virtual void DidChangeManifest() {}
76 virtual void DidChangeScrollOffset() {} 75 virtual void DidChangeScrollOffset() {}
77 virtual void WillSendSubmitEvent(const blink::WebFormElement& form) {} 76 virtual void WillSendSubmitEvent(const blink::WebFormElement& form) {}
78 virtual void WillSubmitForm(const blink::WebFormElement& form) {} 77 virtual void WillSubmitForm(const blink::WebFormElement& form) {}
79 virtual void DidMatchCSS( 78 virtual void DidMatchCSS(
80 const blink::WebVector<blink::WebString>& newly_matching_selectors, 79 const blink::WebVector<blink::WebString>& newly_matching_selectors,
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 RenderFrame* render_frame_; 146 RenderFrame* render_frame_;
148 // The routing ID of the associated RenderFrame. 147 // The routing ID of the associated RenderFrame.
149 int routing_id_; 148 int routing_id_;
150 149
151 DISALLOW_COPY_AND_ASSIGN(RenderFrameObserver); 150 DISALLOW_COPY_AND_ASSIGN(RenderFrameObserver);
152 }; 151 };
153 152
154 } // namespace content 153 } // namespace content
155 154
156 #endif // CONTENT_PUBLIC_RENDERER_RENDER_FRAME_OBSERVER_H_ 155 #endif // CONTENT_PUBLIC_RENDERER_RENDER_FRAME_OBSERVER_H_
OLDNEW
« no previous file with comments | « components/translate/content/renderer/translate_helper.cc ('k') | content/renderer/dom_automation_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698