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

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

Issue 23129015: Initialize RenderWidget(Host)(View)s with correct visibility state (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 virtual int CreateOpenerRenderViewsForRenderManager( 485 virtual int CreateOpenerRenderViewsForRenderManager(
486 SiteInstance* instance) OVERRIDE; 486 SiteInstance* instance) OVERRIDE;
487 virtual NavigationControllerImpl& 487 virtual NavigationControllerImpl&
488 GetControllerForRenderManager() OVERRIDE; 488 GetControllerForRenderManager() OVERRIDE;
489 virtual WebUIImpl* CreateWebUIForRenderManager(const GURL& url) OVERRIDE; 489 virtual WebUIImpl* CreateWebUIForRenderManager(const GURL& url) OVERRIDE;
490 virtual NavigationEntry* 490 virtual NavigationEntry*
491 GetLastCommittedNavigationEntryForRenderManager() OVERRIDE; 491 GetLastCommittedNavigationEntryForRenderManager() OVERRIDE;
492 virtual bool FocusLocationBarByDefault() OVERRIDE; 492 virtual bool FocusLocationBarByDefault() OVERRIDE;
493 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; 493 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE;
494 virtual void CreateViewAndSetSizeForRVH(RenderViewHost* rvh) OVERRIDE; 494 virtual void CreateViewAndSetSizeForRVH(RenderViewHost* rvh) OVERRIDE;
495 virtual bool IsHidden() OVERRIDE;
495 496
496 // NotificationObserver ------------------------------------------------------ 497 // NotificationObserver ------------------------------------------------------
497 498
498 virtual void Observe(int type, 499 virtual void Observe(int type,
499 const NotificationSource& source, 500 const NotificationSource& source,
500 const NotificationDetails& details) OVERRIDE; 501 const NotificationDetails& details) OVERRIDE;
501 502
502 503
503 private: 504 private:
504 friend class NavigationControllerImpl; 505 friend class NavigationControllerImpl;
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
954 // Maps the ids of pending image downloads to their callbacks 955 // Maps the ids of pending image downloads to their callbacks
955 typedef std::map<int, ImageDownloadCallback> ImageDownloadMap; 956 typedef std::map<int, ImageDownloadCallback> ImageDownloadMap;
956 ImageDownloadMap image_download_map_; 957 ImageDownloadMap image_download_map_;
957 958
958 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 959 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
959 }; 960 };
960 961
961 } // namespace content 962 } // namespace content
962 963
963 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 964 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/web_contents/render_view_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