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 <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <functional> | 10 #include <functional> |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 void ReloadFocusedFrame(bool bypass_cache) override; | 338 void ReloadFocusedFrame(bool bypass_cache) override; |
339 void Undo() override; | 339 void Undo() override; |
340 void Redo() override; | 340 void Redo() override; |
341 void Cut() override; | 341 void Cut() override; |
342 void Copy() override; | 342 void Copy() override; |
343 void CopyToFindPboard() override; | 343 void CopyToFindPboard() override; |
344 void Paste() override; | 344 void Paste() override; |
345 void PasteAndMatchStyle() override; | 345 void PasteAndMatchStyle() override; |
346 void Delete() override; | 346 void Delete() override; |
347 void SelectAll() override; | 347 void SelectAll() override; |
348 void Unselect() override; | 348 void CollapseSelection() override; |
349 void Replace(const base::string16& word) override; | 349 void Replace(const base::string16& word) override; |
350 void ReplaceMisspelling(const base::string16& word) override; | 350 void ReplaceMisspelling(const base::string16& word) override; |
351 void NotifyContextMenuClosed( | 351 void NotifyContextMenuClosed( |
352 const CustomContextMenuContext& context) override; | 352 const CustomContextMenuContext& context) override; |
353 void ReloadLoFiImages() override; | 353 void ReloadLoFiImages() override; |
354 void ExecuteCustomContextMenuCommand( | 354 void ExecuteCustomContextMenuCommand( |
355 int action, | 355 int action, |
356 const CustomContextMenuContext& context) override; | 356 const CustomContextMenuContext& context) override; |
357 gfx::NativeView GetNativeView() override; | 357 gfx::NativeView GetNativeView() override; |
358 gfx::NativeView GetContentNativeView() override; | 358 gfx::NativeView GetContentNativeView() override; |
(...skipping 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1537 // Adds/removes a callback called on creation of each new WebContents. | 1537 // Adds/removes a callback called on creation of each new WebContents. |
1538 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1538 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
1539 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1539 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
1540 | 1540 |
1541 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1541 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
1542 }; | 1542 }; |
1543 | 1543 |
1544 } // namespace content | 1544 } // namespace content |
1545 | 1545 |
1546 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1546 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |