| 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 virtual base::TerminationStatus GetCrashedStatus() const OVERRIDE; | 233 virtual base::TerminationStatus GetCrashedStatus() const OVERRIDE; |
| 234 virtual bool IsBeingDestroyed() const OVERRIDE; | 234 virtual bool IsBeingDestroyed() const OVERRIDE; |
| 235 virtual void NotifyNavigationStateChanged(unsigned changed_flags) OVERRIDE; | 235 virtual void NotifyNavigationStateChanged(unsigned changed_flags) OVERRIDE; |
| 236 virtual base::TimeTicks GetLastActiveTime() const OVERRIDE; | 236 virtual base::TimeTicks GetLastActiveTime() const OVERRIDE; |
| 237 virtual void WasShown() OVERRIDE; | 237 virtual void WasShown() OVERRIDE; |
| 238 virtual void WasHidden() OVERRIDE; | 238 virtual void WasHidden() OVERRIDE; |
| 239 virtual bool NeedToFireBeforeUnload() OVERRIDE; | 239 virtual bool NeedToFireBeforeUnload() OVERRIDE; |
| 240 virtual void Stop() OVERRIDE; | 240 virtual void Stop() OVERRIDE; |
| 241 virtual WebContents* Clone() OVERRIDE; | 241 virtual WebContents* Clone() OVERRIDE; |
| 242 virtual void ReloadFocusedFrame(bool ignore_cache) OVERRIDE; | 242 virtual void ReloadFocusedFrame(bool ignore_cache) OVERRIDE; |
| 243 virtual void Replace(const base::string16& word) OVERRIDE; |
| 244 virtual void ReplaceMisspelling(const base::string16& word) OVERRIDE; |
| 243 virtual void FocusThroughTabTraversal(bool reverse) OVERRIDE; | 245 virtual void FocusThroughTabTraversal(bool reverse) OVERRIDE; |
| 244 virtual bool ShowingInterstitialPage() const OVERRIDE; | 246 virtual bool ShowingInterstitialPage() const OVERRIDE; |
| 245 virtual InterstitialPage* GetInterstitialPage() const OVERRIDE; | 247 virtual InterstitialPage* GetInterstitialPage() const OVERRIDE; |
| 246 virtual bool IsSavable() OVERRIDE; | 248 virtual bool IsSavable() OVERRIDE; |
| 247 virtual void OnSavePage() OVERRIDE; | 249 virtual void OnSavePage() OVERRIDE; |
| 248 virtual bool SavePage(const base::FilePath& main_file, | 250 virtual bool SavePage(const base::FilePath& main_file, |
| 249 const base::FilePath& dir_path, | 251 const base::FilePath& dir_path, |
| 250 SavePageType save_type) OVERRIDE; | 252 SavePageType save_type) OVERRIDE; |
| 251 virtual void SaveFrame(const GURL& url, | 253 virtual void SaveFrame(const GURL& url, |
| 252 const Referrer& referrer) OVERRIDE; | 254 const Referrer& referrer) OVERRIDE; |
| (...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1052 // Whether this WebContents is responsible for displaying a subframe in a | 1054 // Whether this WebContents is responsible for displaying a subframe in a |
| 1053 // different process from its parent page. | 1055 // different process from its parent page. |
| 1054 bool is_subframe_; | 1056 bool is_subframe_; |
| 1055 | 1057 |
| 1056 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1058 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1057 }; | 1059 }; |
| 1058 | 1060 |
| 1059 } // namespace content | 1061 } // namespace content |
| 1060 | 1062 |
| 1061 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1063 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |