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

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

Issue 438393004: Revert of Start using RenderFrameProxyHost objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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_navigation) OVERRIDE; 551 bool for_main_frame) OVERRIDE;
552 virtual bool CreateRenderFrameForRenderManager(
553 RenderFrameHost* render_frame_host,
554 int parent_routing_id) OVERRIDE;
555 virtual void BeforeUnloadFiredFromRenderManager( 552 virtual void BeforeUnloadFiredFromRenderManager(
556 bool proceed, const base::TimeTicks& proceed_time, 553 bool proceed, const base::TimeTicks& proceed_time,
557 bool* proceed_to_fire_unload) OVERRIDE; 554 bool* proceed_to_fire_unload) OVERRIDE;
558 virtual void RenderProcessGoneFromRenderManager( 555 virtual void RenderProcessGoneFromRenderManager(
559 RenderViewHost* render_view_host) OVERRIDE; 556 RenderViewHost* render_view_host) OVERRIDE;
560 virtual void UpdateRenderViewSizeForRenderManager() OVERRIDE; 557 virtual void UpdateRenderViewSizeForRenderManager() OVERRIDE;
561 virtual void CancelModalDialogsForRenderManager() OVERRIDE; 558 virtual void CancelModalDialogsForRenderManager() OVERRIDE;
562 virtual void NotifySwappedFromRenderManager(RenderFrameHost* old_host, 559 virtual void NotifySwappedFromRenderManager(RenderFrameHost* old_host,
563 RenderFrameHost* new_host, 560 RenderFrameHost* new_host,
564 bool is_main_frame) OVERRIDE; 561 bool is_main_frame) OVERRIDE;
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
1189 // The accessibility mode for all frames. This is queried when each frame 1186 // The accessibility mode for all frames. This is queried when each frame
1190 // is created, and broadcast to all frames when it changes. 1187 // is created, and broadcast to all frames when it changes.
1191 AccessibilityMode accessibility_mode_; 1188 AccessibilityMode accessibility_mode_;
1192 1189
1193 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1190 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1194 }; 1191 };
1195 1192
1196 } // namespace content 1193 } // namespace content
1197 1194
1198 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1195 #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