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

Side by Side Diff: webkit/tools/test_shell/simple_file_writer.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 WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_WRITER_H_ 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_WRITER_H_
6 #define WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_WRITER_H_ 6 #define WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_WRITER_H_
7 7
8 #include "base/ref_counted.h" 8 #include "base/ref_counted.h"
9 #include "base/weak_ptr.h" 9 #include "base/weak_ptr.h"
10 #include "webkit/fileapi/webfilewriter_base.h" 10 #include "webkit/fileapi/webfilewriter_base.h"
11 11
12 namespace net { 12 namespace net {
13 class URLRequestContext; 13 class URLRequestContext;
14 } // namespace net 14 } // namespace net
15 15
16 namespace fileapi {
17 class FileSystemContext;
18 }
19
16 // An implementation of WebFileWriter for use in test_shell and DRT. 20 // An implementation of WebFileWriter for use in test_shell and DRT.
17 class SimpleFileWriter : public fileapi::WebFileWriterBase, 21 class SimpleFileWriter : public fileapi::WebFileWriterBase,
18 public base::SupportsWeakPtr<SimpleFileWriter> { 22 public base::SupportsWeakPtr<SimpleFileWriter> {
19 public: 23 public:
20 SimpleFileWriter( 24 SimpleFileWriter(
21 const WebKit::WebString& path, WebKit::WebFileWriterClient* client); 25 const WebKit::WebString& path,
26 WebKit::WebFileWriterClient* client,
27 fileapi::FileSystemContext* file_system_context);
22 virtual ~SimpleFileWriter(); 28 virtual ~SimpleFileWriter();
23 29
24 // Called by SimpleResourceLoaderBridge when the context is 30 // Called by SimpleResourceLoaderBridge when the context is
25 // created and destroyed. 31 // created and destroyed.
26 static void InitializeOnIOThread(net::URLRequestContext* request_context) { 32 static void InitializeOnIOThread(net::URLRequestContext* request_context) {
27 request_context_ = request_context; 33 request_context_ = request_context;
28 } 34 }
29 static void CleanupOnIOThread() { 35 static void CleanupOnIOThread() {
30 request_context_ = NULL; 36 request_context_ = NULL;
31 } 37 }
32 38
33 protected: 39 protected:
34 // WebFileWriterBase overrides 40 // WebFileWriterBase overrides
35 virtual void DoTruncate(const FilePath& path, int64 offset); 41 virtual void DoTruncate(const FilePath& path, int64 offset);
36 virtual void DoWrite(const FilePath& path, const GURL& blob_url, 42 virtual void DoWrite(const FilePath& path, const GURL& blob_url,
37 int64 offset); 43 int64 offset);
38 virtual void DoCancel(); 44 virtual void DoCancel();
39 45
40 private: 46 private:
41 class IOThreadProxy; 47 class IOThreadProxy;
42 scoped_refptr<IOThreadProxy> io_thread_proxy_; 48 scoped_refptr<IOThreadProxy> io_thread_proxy_;
43 static net::URLRequestContext* request_context_; 49 static net::URLRequestContext* request_context_;
44 }; 50 };
45 51
46 #endif // WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_WRITER_H_ 52 #endif // WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_WRITER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698