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