| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 int error_code) OVERRIDE; | 225 int error_code) OVERRIDE; |
| 226 virtual base::TerminationStatus GetCrashedStatus() const OVERRIDE; | 226 virtual base::TerminationStatus GetCrashedStatus() const OVERRIDE; |
| 227 virtual bool IsBeingDestroyed() const OVERRIDE; | 227 virtual bool IsBeingDestroyed() const OVERRIDE; |
| 228 virtual void NotifyNavigationStateChanged(unsigned changed_flags) OVERRIDE; | 228 virtual void NotifyNavigationStateChanged(unsigned changed_flags) OVERRIDE; |
| 229 virtual base::TimeTicks GetLastSelectedTime() const OVERRIDE; | 229 virtual base::TimeTicks GetLastSelectedTime() const OVERRIDE; |
| 230 virtual void WasShown() OVERRIDE; | 230 virtual void WasShown() OVERRIDE; |
| 231 virtual void WasHidden() OVERRIDE; | 231 virtual void WasHidden() OVERRIDE; |
| 232 virtual bool NeedToFireBeforeUnload() OVERRIDE; | 232 virtual bool NeedToFireBeforeUnload() OVERRIDE; |
| 233 virtual void Stop() OVERRIDE; | 233 virtual void Stop() OVERRIDE; |
| 234 virtual WebContents* Clone() OVERRIDE; | 234 virtual WebContents* Clone() OVERRIDE; |
| 235 virtual gfx::NativeView GetContentNativeView() const OVERRIDE; | |
| 236 virtual gfx::NativeView GetNativeView() const OVERRIDE; | |
| 237 virtual void GetContainerBounds(gfx::Rect* out) const OVERRIDE; | |
| 238 virtual void Focus() OVERRIDE; | |
| 239 virtual void FocusThroughTabTraversal(bool reverse) OVERRIDE; | 235 virtual void FocusThroughTabTraversal(bool reverse) OVERRIDE; |
| 240 virtual bool ShowingInterstitialPage() const OVERRIDE; | 236 virtual bool ShowingInterstitialPage() const OVERRIDE; |
| 241 virtual InterstitialPage* GetInterstitialPage() const OVERRIDE; | 237 virtual InterstitialPage* GetInterstitialPage() const OVERRIDE; |
| 242 virtual bool IsSavable() OVERRIDE; | 238 virtual bool IsSavable() OVERRIDE; |
| 243 virtual void OnSavePage() OVERRIDE; | 239 virtual void OnSavePage() OVERRIDE; |
| 244 virtual bool SavePage(const base::FilePath& main_file, | 240 virtual bool SavePage(const base::FilePath& main_file, |
| 245 const base::FilePath& dir_path, | 241 const base::FilePath& dir_path, |
| 246 SavePageType save_type) OVERRIDE; | 242 SavePageType save_type) OVERRIDE; |
| 247 virtual void GenerateMHTML( | 243 virtual void GenerateMHTML( |
| 248 const base::FilePath& file, | 244 const base::FilePath& file, |
| (...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 // Maps the ids of pending favicon downloads to their callbacks | 888 // Maps the ids of pending favicon downloads to their callbacks |
| 893 typedef std::map<int, FaviconDownloadCallback> FaviconDownloadMap; | 889 typedef std::map<int, FaviconDownloadCallback> FaviconDownloadMap; |
| 894 FaviconDownloadMap favicon_download_map_; | 890 FaviconDownloadMap favicon_download_map_; |
| 895 | 891 |
| 896 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 892 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 897 }; | 893 }; |
| 898 | 894 |
| 899 } // namespace content | 895 } // namespace content |
| 900 | 896 |
| 901 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 897 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |