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

Side by Side Diff: content/common/file_system/webfilesystem_impl.h

Issue 6603034: Stop returning the true root path of each filesystem from openFileSystem.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ 5 #ifndef CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_
6 #define CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ 6 #define CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h"
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 virtual void directoryExists( 57 virtual void directoryExists(
58 const WebKit::WebString& path, 58 const WebKit::WebString& path,
59 WebKit::WebFileSystemCallbacks*); 59 WebKit::WebFileSystemCallbacks*);
60 60
61 virtual void readDirectory( 61 virtual void readDirectory(
62 const WebKit::WebString& path, 62 const WebKit::WebString& path,
63 WebKit::WebFileSystemCallbacks*); 63 WebKit::WebFileSystemCallbacks*);
64 64
65 virtual WebKit::WebFileWriter* createFileWriter( 65 virtual WebKit::WebFileWriter* createFileWriter(
66 const WebKit::WebString& path, WebKit::WebFileWriterClient*); 66 const WebKit::WebString& path, WebKit::WebFileWriterClient*);
67
kinuko 2011/03/22 00:16:24 No need to change this file?
ericu 2011/03/22 00:40:31 Reverted.
67 }; 68 };
68 69
69 #endif // CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ 70 #endif // CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698