| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 virtual void SetIsCrashed(base::TerminationStatus status, | 229 virtual void SetIsCrashed(base::TerminationStatus status, |
| 230 int error_code) OVERRIDE; | 230 int error_code) OVERRIDE; |
| 231 virtual base::TerminationStatus GetCrashedStatus() const OVERRIDE; | 231 virtual base::TerminationStatus GetCrashedStatus() const OVERRIDE; |
| 232 virtual bool IsBeingDestroyed() const OVERRIDE; | 232 virtual bool IsBeingDestroyed() const OVERRIDE; |
| 233 virtual void NotifyNavigationStateChanged(unsigned changed_flags) OVERRIDE; | 233 virtual void NotifyNavigationStateChanged(unsigned changed_flags) OVERRIDE; |
| 234 virtual base::TimeTicks GetLastActiveTime() const OVERRIDE; | 234 virtual base::TimeTicks GetLastActiveTime() const OVERRIDE; |
| 235 virtual void WasShown() OVERRIDE; | 235 virtual void WasShown() OVERRIDE; |
| 236 virtual void WasHidden() OVERRIDE; | 236 virtual void WasHidden() OVERRIDE; |
| 237 virtual bool NeedToFireBeforeUnload() OVERRIDE; | 237 virtual bool NeedToFireBeforeUnload() OVERRIDE; |
| 238 virtual void DispatchBeforeUnload(bool for_cross_site_transition) OVERRIDE; | 238 virtual void DispatchBeforeUnload(bool for_cross_site_transition) OVERRIDE; |
| 239 virtual void SetTemporaryZoomSettings(bool temporary_zoom_settings) OVERRIDE; |
| 239 virtual void Stop() OVERRIDE; | 240 virtual void Stop() OVERRIDE; |
| 240 virtual WebContents* Clone() OVERRIDE; | 241 virtual WebContents* Clone() OVERRIDE; |
| 241 virtual void ReloadFocusedFrame(bool ignore_cache) OVERRIDE; | 242 virtual void ReloadFocusedFrame(bool ignore_cache) OVERRIDE; |
| 242 virtual void Undo() OVERRIDE; | 243 virtual void Undo() OVERRIDE; |
| 243 virtual void Redo() OVERRIDE; | 244 virtual void Redo() OVERRIDE; |
| 244 virtual void Cut() OVERRIDE; | 245 virtual void Cut() OVERRIDE; |
| 245 virtual void Copy() OVERRIDE; | 246 virtual void Copy() OVERRIDE; |
| 246 virtual void CopyToFindPboard() OVERRIDE; | 247 virtual void CopyToFindPboard() OVERRIDE; |
| 247 virtual void Paste() OVERRIDE; | 248 virtual void Paste() OVERRIDE; |
| 248 virtual void PasteAndMatchStyle() OVERRIDE; | 249 virtual void PasteAndMatchStyle() OVERRIDE; |
| (...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1087 | 1088 |
| 1088 // Whether the last JavaScript dialog shown was suppressed. Used for testing. | 1089 // Whether the last JavaScript dialog shown was suppressed. Used for testing. |
| 1089 bool last_dialog_suppressed_; | 1090 bool last_dialog_suppressed_; |
| 1090 | 1091 |
| 1091 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1092 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1092 }; | 1093 }; |
| 1093 | 1094 |
| 1094 } // namespace content | 1095 } // namespace content |
| 1095 | 1096 |
| 1096 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1097 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |