| 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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 void Unselect() override; | 281 void Unselect() override; |
| 282 void Replace(const base::string16& word) override; | 282 void Replace(const base::string16& word) override; |
| 283 void ReplaceMisspelling(const base::string16& word) override; | 283 void ReplaceMisspelling(const base::string16& word) override; |
| 284 void NotifyContextMenuClosed( | 284 void NotifyContextMenuClosed( |
| 285 const CustomContextMenuContext& context) override; | 285 const CustomContextMenuContext& context) override; |
| 286 void ExecuteCustomContextMenuCommand( | 286 void ExecuteCustomContextMenuCommand( |
| 287 int action, | 287 int action, |
| 288 const CustomContextMenuContext& context) override; | 288 const CustomContextMenuContext& context) override; |
| 289 gfx::NativeView GetNativeView() override; | 289 gfx::NativeView GetNativeView() override; |
| 290 gfx::NativeView GetContentNativeView() override; | 290 gfx::NativeView GetContentNativeView() override; |
| 291 gfx::NativeWindow GetTopLevelNativeWindow() override; | 291 gfx::NativeWindow GetTopLevelNativeWindow() const override; |
| 292 gfx::Rect GetContainerBounds() override; | 292 gfx::Rect GetContainerBounds() const override; |
| 293 gfx::Rect GetViewBounds() override; | 293 gfx::Rect GetViewBounds() override; |
| 294 DropData* GetDropData() override; | 294 DropData* GetDropData() override; |
| 295 void Focus() override; | 295 void Focus() override; |
| 296 void SetInitialFocus() override; | 296 void SetInitialFocus() override; |
| 297 void StoreFocus() override; | 297 void StoreFocus() override; |
| 298 void RestoreFocus() override; | 298 void RestoreFocus() override; |
| 299 void FocusThroughTabTraversal(bool reverse) override; | 299 void FocusThroughTabTraversal(bool reverse) override; |
| 300 bool ShowingInterstitialPage() const override; | 300 bool ShowingInterstitialPage() const override; |
| 301 InterstitialPage* GetInterstitialPage() const override; | 301 InterstitialPage* GetInterstitialPage() const override; |
| 302 bool IsSavable() override; | 302 bool IsSavable() override; |
| (...skipping 970 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1273 // Adds/removes a callback called on creation of each new WebContents. | 1273 // Adds/removes a callback called on creation of each new WebContents. |
| 1274 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1274 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1275 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1275 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1276 | 1276 |
| 1277 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1277 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1278 }; | 1278 }; |
| 1279 | 1279 |
| 1280 } // namespace content | 1280 } // namespace content |
| 1281 | 1281 |
| 1282 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1282 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |