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_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 #endif | 651 #endif |
652 virtual void didChangeContentsSize(WebKit::WebFrame* frame, | 652 virtual void didChangeContentsSize(WebKit::WebFrame* frame, |
653 const WebKit::WebSize& size); | 653 const WebKit::WebSize& size); |
654 virtual void reportFindInPageMatchCount(int request_id, | 654 virtual void reportFindInPageMatchCount(int request_id, |
655 int count, | 655 int count, |
656 bool final_update); | 656 bool final_update); |
657 virtual void reportFindInPageSelection(int request_id, | 657 virtual void reportFindInPageSelection(int request_id, |
658 int active_match_ordinal, | 658 int active_match_ordinal, |
659 const WebKit::WebRect& sel); | 659 const WebKit::WebRect& sel); |
660 virtual void openFileSystem(WebKit::WebFrame* frame, | 660 virtual void openFileSystem(WebKit::WebFrame* frame, |
| 661 #ifdef WEBKIT_USE_NEW_WEBFILESYSTEMTYPE |
| 662 WebKit::WebFileSystemType type, |
| 663 #else |
661 WebKit::WebFileSystem::Type type, | 664 WebKit::WebFileSystem::Type type, |
| 665 #endif |
662 long long size, | 666 long long size, |
663 bool create, | 667 bool create, |
664 WebKit::WebFileSystemCallbacks* callbacks); | 668 WebKit::WebFileSystemCallbacks* callbacks); |
665 virtual void deleteFileSystem(WebKit::WebFrame* frame, | 669 virtual void deleteFileSystem(WebKit::WebFrame* frame, |
| 670 #ifdef WEBKIT_USE_NEW_WEBFILESYSTEMTYPE |
| 671 WebKit::WebFileSystemType type, |
| 672 #else |
666 WebKit::WebFileSystem::Type type, | 673 WebKit::WebFileSystem::Type type, |
| 674 #endif |
667 WebKit::WebFileSystemCallbacks* callbacks); | 675 WebKit::WebFileSystemCallbacks* callbacks); |
668 virtual void queryStorageUsageAndQuota( | 676 virtual void queryStorageUsageAndQuota( |
669 WebKit::WebFrame* frame, | 677 WebKit::WebFrame* frame, |
670 WebKit::WebStorageQuotaType type, | 678 WebKit::WebStorageQuotaType type, |
671 WebKit::WebStorageQuotaCallbacks* callbacks); | 679 WebKit::WebStorageQuotaCallbacks* callbacks); |
672 virtual void requestStorageQuota( | 680 virtual void requestStorageQuota( |
673 WebKit::WebFrame* frame, | 681 WebKit::WebFrame* frame, |
674 WebKit::WebStorageQuotaType type, | 682 WebKit::WebStorageQuotaType type, |
675 unsigned long long requested_size, | 683 unsigned long long requested_size, |
676 WebKit::WebStorageQuotaCallbacks* callbacks); | 684 WebKit::WebStorageQuotaCallbacks* callbacks); |
(...skipping 920 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1597 // use the Observer interface to filter IPC messages and receive frame change | 1605 // use the Observer interface to filter IPC messages and receive frame change |
1598 // notifications. | 1606 // notifications. |
1599 // --------------------------------------------------------------------------- | 1607 // --------------------------------------------------------------------------- |
1600 | 1608 |
1601 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1609 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1602 }; | 1610 }; |
1603 | 1611 |
1604 } // namespace content | 1612 } // namespace content |
1605 | 1613 |
1606 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1614 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |