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

Side by Side Diff: chrome/renderer/render_view.h

Issue 4350001: Added ability to propogate create to suggest whether or not filesystem's root... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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
« no previous file with comments | « chrome/renderer/pepper_plugin_delegate_impl.cc ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 CHROME_RENDERER_RENDER_VIEW_H_ 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_
6 #define CHROME_RENDERER_RENDER_VIEW_H_ 6 #define CHROME_RENDERER_RENDER_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 virtual void reportFindInPageMatchCount(int request_id, 582 virtual void reportFindInPageMatchCount(int request_id,
583 int count, 583 int count,
584 bool final_update); 584 bool final_update);
585 virtual void reportFindInPageSelection(int request_id, 585 virtual void reportFindInPageSelection(int request_id,
586 int active_match_ordinal, 586 int active_match_ordinal,
587 const WebKit::WebRect& sel); 587 const WebKit::WebRect& sel);
588 588
589 virtual void openFileSystem(WebKit::WebFrame* frame, 589 virtual void openFileSystem(WebKit::WebFrame* frame,
590 WebKit::WebFileSystem::Type type, 590 WebKit::WebFileSystem::Type type,
591 long long size, 591 long long size,
592 bool create,
592 WebKit::WebFileSystemCallbacks* callbacks); 593 WebKit::WebFileSystemCallbacks* callbacks);
593 594
594 // WebKit::WebPageSerializerClient implementation ---------------------------- 595 // WebKit::WebPageSerializerClient implementation ----------------------------
595 596
596 virtual void didSerializeDataForFrame(const WebKit::WebURL& frame_url, 597 virtual void didSerializeDataForFrame(const WebKit::WebURL& frame_url,
597 const WebKit::WebCString& data, 598 const WebKit::WebCString& data,
598 PageSerializationStatus status); 599 PageSerializationStatus status);
599 600
600 // webkit_glue::WebPluginPageDelegate implementation ------------------------- 601 // webkit_glue::WebPluginPageDelegate implementation -------------------------
601 602
(...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after
1399 // ADDING NEW DATA? Please see if it fits appropriately in one of the above 1400 // ADDING NEW DATA? Please see if it fits appropriately in one of the above
1400 // sections rather than throwing it randomly at the end. If you're adding a 1401 // sections rather than throwing it randomly at the end. If you're adding a
1401 // bunch of stuff, you should probably create a helper class and put your 1402 // bunch of stuff, you should probably create a helper class and put your
1402 // data and methods on that to avoid bloating RenderView more. 1403 // data and methods on that to avoid bloating RenderView more.
1403 // --------------------------------------------------------------------------- 1404 // ---------------------------------------------------------------------------
1404 1405
1405 DISALLOW_COPY_AND_ASSIGN(RenderView); 1406 DISALLOW_COPY_AND_ASSIGN(RenderView);
1406 }; 1407 };
1407 1408
1408 #endif // CHROME_RENDERER_RENDER_VIEW_H_ 1409 #endif // CHROME_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/renderer/pepper_plugin_delegate_impl.cc ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698