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

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

Issue 753173002: Preparation steps for adding speculative renderer creation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address a new round of CR comments: renames, comments and minor changes. Created 6 years 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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 bool* proceed_to_fire_unload) override; 548 bool* proceed_to_fire_unload) override;
549 void RenderProcessGoneFromRenderManager( 549 void RenderProcessGoneFromRenderManager(
550 RenderViewHost* render_view_host) override; 550 RenderViewHost* render_view_host) override;
551 void UpdateRenderViewSizeForRenderManager() override; 551 void UpdateRenderViewSizeForRenderManager() override;
552 void CancelModalDialogsForRenderManager() override; 552 void CancelModalDialogsForRenderManager() override;
553 void NotifySwappedFromRenderManager(RenderFrameHost* old_host, 553 void NotifySwappedFromRenderManager(RenderFrameHost* old_host,
554 RenderFrameHost* new_host, 554 RenderFrameHost* new_host,
555 bool is_main_frame) override; 555 bool is_main_frame) override;
556 int CreateOpenerRenderViewsForRenderManager(SiteInstance* instance) override; 556 int CreateOpenerRenderViewsForRenderManager(SiteInstance* instance) override;
557 NavigationControllerImpl& GetControllerForRenderManager() override; 557 NavigationControllerImpl& GetControllerForRenderManager() override;
558 WebUIImpl* CreateWebUIForRenderManager(const GURL& url) override; 558 scoped_ptr<WebUIImpl> CreateWebUIForRenderManager(const GURL& url) override;
559 NavigationEntry* GetLastCommittedNavigationEntryForRenderManager() override; 559 NavigationEntry* GetLastCommittedNavigationEntryForRenderManager() override;
560 bool FocusLocationBarByDefault() override; 560 bool FocusLocationBarByDefault() override;
561 void SetFocusToLocationBar(bool select_all) override; 561 void SetFocusToLocationBar(bool select_all) override;
562 bool IsHidden() override; 562 bool IsHidden() override;
563 563
564 // NotificationObserver ------------------------------------------------------ 564 // NotificationObserver ------------------------------------------------------
565 565
566 void Observe(int type, 566 void Observe(int type,
567 const NotificationSource& source, 567 const NotificationSource& source,
568 const NotificationDetails& details) override; 568 const NotificationDetails& details) override;
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
1233 bool virtual_keyboard_requested_; 1233 bool virtual_keyboard_requested_;
1234 1234
1235 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; 1235 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_;
1236 1236
1237 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1237 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1238 }; 1238 };
1239 1239
1240 } // namespace content 1240 } // namespace content
1241 1241
1242 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1242 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_manager.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