Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: content/renderer/render_view_impl.h

Issue 10828043: Wire up the deleteFileSystem operation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Replaced "typedef" by "using". Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 784 matching lines...) Expand 10 before | Expand all | Expand 10 after
1432 // bunch of stuff, you should probably create a helper class and put your 1435 // bunch of stuff, you should probably create a helper class and put your
1433 // data and methods on that to avoid bloating RenderView more. You can 1436 // data and methods on that to avoid bloating RenderView more. You can
1434 // use the Observer interface to filter IPC messages and receive frame change 1437 // use the Observer interface to filter IPC messages and receive frame change
1435 // notifications. 1438 // notifications.
1436 // --------------------------------------------------------------------------- 1439 // ---------------------------------------------------------------------------
1437 1440
1438 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1441 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1439 }; 1442 };
1440 1443
1441 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1444 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698