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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 444503002: Start using RenderFrameProxyHost objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Create view IFF frame is main frame Created 6 years, 4 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 OVERRIDE; 541 OVERRIDE;
542 virtual BrowserAccessibilityManager* 542 virtual BrowserAccessibilityManager*
543 GetOrCreateRootBrowserAccessibilityManager() OVERRIDE; 543 GetOrCreateRootBrowserAccessibilityManager() OVERRIDE;
544 544
545 // RenderFrameHostManager::Delegate ------------------------------------------ 545 // RenderFrameHostManager::Delegate ------------------------------------------
546 546
547 virtual bool CreateRenderViewForRenderManager( 547 virtual bool CreateRenderViewForRenderManager(
548 RenderViewHost* render_view_host, 548 RenderViewHost* render_view_host,
549 int opener_route_id, 549 int opener_route_id,
550 int proxy_routing_id, 550 int proxy_routing_id,
551 bool for_main_frame) OVERRIDE; 551 bool for_main_frame_navigation) OVERRIDE;
552 virtual bool CreateRenderFrameForRenderManager(
553 RenderFrameHost* render_frame_host,
554 int parent_routing_id) OVERRIDE;
552 virtual void BeforeUnloadFiredFromRenderManager( 555 virtual void BeforeUnloadFiredFromRenderManager(
553 bool proceed, const base::TimeTicks& proceed_time, 556 bool proceed, const base::TimeTicks& proceed_time,
554 bool* proceed_to_fire_unload) OVERRIDE; 557 bool* proceed_to_fire_unload) OVERRIDE;
555 virtual void RenderProcessGoneFromRenderManager( 558 virtual void RenderProcessGoneFromRenderManager(
556 RenderViewHost* render_view_host) OVERRIDE; 559 RenderViewHost* render_view_host) OVERRIDE;
557 virtual void UpdateRenderViewSizeForRenderManager() OVERRIDE; 560 virtual void UpdateRenderViewSizeForRenderManager() OVERRIDE;
558 virtual void CancelModalDialogsForRenderManager() OVERRIDE; 561 virtual void CancelModalDialogsForRenderManager() OVERRIDE;
559 virtual void NotifySwappedFromRenderManager(RenderFrameHost* old_host, 562 virtual void NotifySwappedFromRenderManager(RenderFrameHost* old_host,
560 RenderFrameHost* new_host, 563 RenderFrameHost* new_host,
561 bool is_main_frame) OVERRIDE; 564 bool is_main_frame) OVERRIDE;
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
1185 // The accessibility mode for all frames. This is queried when each frame 1188 // The accessibility mode for all frames. This is queried when each frame
1186 // is created, and broadcast to all frames when it changes. 1189 // is created, and broadcast to all frames when it changes.
1187 AccessibilityMode accessibility_mode_; 1190 AccessibilityMode accessibility_mode_;
1188 1191
1189 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1192 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1190 }; 1193 };
1191 1194
1192 } // namespace content 1195 } // namespace content
1193 1196
1194 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1197 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/web_contents/opened_by_dom_browsertest.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698