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 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 int count, | 625 int count, |
626 bool final_update); | 626 bool final_update); |
627 virtual void reportFindInPageSelection(int request_id, | 627 virtual void reportFindInPageSelection(int request_id, |
628 int active_match_ordinal, | 628 int active_match_ordinal, |
629 const WebKit::WebRect& sel); | 629 const WebKit::WebRect& sel); |
630 virtual void openFileSystem(WebKit::WebFrame* frame, | 630 virtual void openFileSystem(WebKit::WebFrame* frame, |
631 WebKit::WebFileSystem::Type type, | 631 WebKit::WebFileSystem::Type type, |
632 long long size, | 632 long long size, |
633 bool create, | 633 bool create, |
634 WebKit::WebFileSystemCallbacks* callbacks); | 634 WebKit::WebFileSystemCallbacks* callbacks); |
| 635 virtual void deleteFileSystem(WebKit::WebFrame* frame, |
| 636 WebKit::WebFileSystem::Type type, |
| 637 WebKit::WebFileSystemCallbacks* callbacks); |
635 virtual void queryStorageUsageAndQuota( | 638 virtual void queryStorageUsageAndQuota( |
636 WebKit::WebFrame* frame, | 639 WebKit::WebFrame* frame, |
637 WebKit::WebStorageQuotaType type, | 640 WebKit::WebStorageQuotaType type, |
638 WebKit::WebStorageQuotaCallbacks* callbacks); | 641 WebKit::WebStorageQuotaCallbacks* callbacks); |
639 virtual void requestStorageQuota( | 642 virtual void requestStorageQuota( |
640 WebKit::WebFrame* frame, | 643 WebKit::WebFrame* frame, |
641 WebKit::WebStorageQuotaType type, | 644 WebKit::WebStorageQuotaType type, |
642 unsigned long long requested_size, | 645 unsigned long long requested_size, |
643 WebKit::WebStorageQuotaCallbacks* callbacks); | 646 WebKit::WebStorageQuotaCallbacks* callbacks); |
644 virtual void registerIntentService( | 647 virtual void registerIntentService( |
(...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1429 // bunch of stuff, you should probably create a helper class and put your | 1432 // bunch of stuff, you should probably create a helper class and put your |
1430 // data and methods on that to avoid bloating RenderView more. You can | 1433 // data and methods on that to avoid bloating RenderView more. You can |
1431 // use the Observer interface to filter IPC messages and receive frame change | 1434 // use the Observer interface to filter IPC messages and receive frame change |
1432 // notifications. | 1435 // notifications. |
1433 // --------------------------------------------------------------------------- | 1436 // --------------------------------------------------------------------------- |
1434 | 1437 |
1435 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1438 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1436 }; | 1439 }; |
1437 | 1440 |
1438 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1441 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |