OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |