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

Side by Side Diff: content/renderer/render_frame_impl.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
« no previous file with comments | « content/renderer/dom_automation_controller.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 void didRunInsecureContent(const blink::WebSecurityOrigin& origin, 599 void didRunInsecureContent(const blink::WebSecurityOrigin& origin,
600 const blink::WebURL& target) override; 600 const blink::WebURL& target) override;
601 void didDisplayContentWithCertificateErrors( 601 void didDisplayContentWithCertificateErrors(
602 const blink::WebURL& url) override; 602 const blink::WebURL& url) override;
603 void didRunContentWithCertificateErrors(const blink::WebURL& url) override; 603 void didRunContentWithCertificateErrors(const blink::WebURL& url) override;
604 void didChangePerformanceTiming() override; 604 void didChangePerformanceTiming() override;
605 void didObserveLoadingBehavior( 605 void didObserveLoadingBehavior(
606 blink::WebLoadingBehaviorFlag behavior) override; 606 blink::WebLoadingBehaviorFlag behavior) override;
607 void didCreateScriptContext(blink::WebLocalFrame* frame, 607 void didCreateScriptContext(blink::WebLocalFrame* frame,
608 v8::Local<v8::Context> context, 608 v8::Local<v8::Context> context,
609 int extension_group,
610 int world_id) override; 609 int world_id) override;
611 void willReleaseScriptContext(blink::WebLocalFrame* frame, 610 void willReleaseScriptContext(blink::WebLocalFrame* frame,
612 v8::Local<v8::Context> context, 611 v8::Local<v8::Context> context,
613 int world_id) override; 612 int world_id) override;
614 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; 613 void didChangeScrollOffset(blink::WebLocalFrame* frame) override;
615 void willInsertBody(blink::WebLocalFrame* frame) override; 614 void willInsertBody(blink::WebLocalFrame* frame) override;
616 void reportFindInPageMatchCount(int request_id, 615 void reportFindInPageMatchCount(int request_id,
617 int count, 616 int count,
618 bool final_update) override; 617 bool final_update) override;
619 void reportFindInPageSelection(int request_id, 618 void reportFindInPageSelection(int request_id,
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
1366 bool browser_side_navigation_pending_ = false; 1365 bool browser_side_navigation_pending_ = false;
1367 1366
1368 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1367 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1369 1368
1370 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1369 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1371 }; 1370 };
1372 1371
1373 } // namespace content 1372 } // namespace content
1374 1373
1375 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1374 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/dom_automation_controller.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698