| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 virtual uint64 GetUploadPosition() const OVERRIDE; | 211 virtual uint64 GetUploadPosition() const OVERRIDE; |
| 212 virtual const std::string& GetEncoding() const OVERRIDE; | 212 virtual const std::string& GetEncoding() const OVERRIDE; |
| 213 virtual bool DisplayedInsecureContent() const OVERRIDE; | 213 virtual bool DisplayedInsecureContent() const OVERRIDE; |
| 214 virtual void SetCapturingContents(bool cap) OVERRIDE; | 214 virtual void SetCapturingContents(bool cap) OVERRIDE; |
| 215 virtual bool IsCrashed() const OVERRIDE; | 215 virtual bool IsCrashed() const OVERRIDE; |
| 216 virtual void SetIsCrashed(base::TerminationStatus status, | 216 virtual void SetIsCrashed(base::TerminationStatus status, |
| 217 int error_code) OVERRIDE; | 217 int error_code) OVERRIDE; |
| 218 virtual base::TerminationStatus GetCrashedStatus() const OVERRIDE; | 218 virtual base::TerminationStatus GetCrashedStatus() const OVERRIDE; |
| 219 virtual bool IsBeingDestroyed() const OVERRIDE; | 219 virtual bool IsBeingDestroyed() const OVERRIDE; |
| 220 virtual void NotifyNavigationStateChanged(unsigned changed_flags) OVERRIDE; | 220 virtual void NotifyNavigationStateChanged(unsigned changed_flags) OVERRIDE; |
| 221 virtual void NotifyVisibleSSLStateChanged() OVERRIDE; |
| 221 virtual base::TimeTicks GetLastSelectedTime() const OVERRIDE; | 222 virtual base::TimeTicks GetLastSelectedTime() const OVERRIDE; |
| 222 virtual void WasShown() OVERRIDE; | 223 virtual void WasShown() OVERRIDE; |
| 223 virtual void WasHidden() OVERRIDE; | 224 virtual void WasHidden() OVERRIDE; |
| 224 virtual bool NeedToFireBeforeUnload() OVERRIDE; | 225 virtual bool NeedToFireBeforeUnload() OVERRIDE; |
| 225 virtual void Stop() OVERRIDE; | 226 virtual void Stop() OVERRIDE; |
| 226 virtual WebContents* Clone() OVERRIDE; | 227 virtual WebContents* Clone() OVERRIDE; |
| 227 virtual gfx::NativeView GetContentNativeView() const OVERRIDE; | 228 virtual gfx::NativeView GetContentNativeView() const OVERRIDE; |
| 228 virtual gfx::NativeView GetNativeView() const OVERRIDE; | 229 virtual gfx::NativeView GetNativeView() const OVERRIDE; |
| 229 virtual void GetContainerBounds(gfx::Rect* out) const OVERRIDE; | 230 virtual void GetContainerBounds(gfx::Rect* out) const OVERRIDE; |
| 230 virtual void Focus() OVERRIDE; | 231 virtual void Focus() OVERRIDE; |
| (...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 // Maps the ids of pending favicon downloads to their callbacks | 868 // Maps the ids of pending favicon downloads to their callbacks |
| 868 typedef std::map<int, FaviconDownloadCallback> FaviconDownloadMap; | 869 typedef std::map<int, FaviconDownloadCallback> FaviconDownloadMap; |
| 869 FaviconDownloadMap favicon_download_map_; | 870 FaviconDownloadMap favicon_download_map_; |
| 870 | 871 |
| 871 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 872 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 872 }; | 873 }; |
| 873 | 874 |
| 874 } // namespace content | 875 } // namespace content |
| 875 | 876 |
| 876 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 877 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |