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

Side by Side Diff: content/common/fileapi/webfilewriter_impl.h

Issue 11227033: Move a bunch of code in content\common (as well as a few left in renderer) to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix cros Created 8 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
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_COMMON_FILEAPI_WEBFILEWRITER_IMPL_H_ 5 #ifndef CONTENT_COMMON_FILEAPI_WEBFILEWRITER_IMPL_H_
6 #define CONTENT_COMMON_FILEAPI_WEBFILEWRITER_IMPL_H_ 6 #define CONTENT_COMMON_FILEAPI_WEBFILEWRITER_IMPL_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "webkit/fileapi/webfilewriter_base.h" 10 #include "webkit/fileapi/webfilewriter_base.h"
11 11
12 namespace content {
13
12 // An implementation of WebFileWriter for use in chrome renderers and workers. 14 // An implementation of WebFileWriter for use in chrome renderers and workers.
13 class WebFileWriterImpl : public fileapi::WebFileWriterBase, 15 class WebFileWriterImpl : public fileapi::WebFileWriterBase,
14 public base::SupportsWeakPtr<WebFileWriterImpl> { 16 public base::SupportsWeakPtr<WebFileWriterImpl> {
15 public: 17 public:
16 WebFileWriterImpl(const GURL& path, WebKit::WebFileWriterClient* client); 18 WebFileWriterImpl(const GURL& path, WebKit::WebFileWriterClient* client);
17 virtual ~WebFileWriterImpl(); 19 virtual ~WebFileWriterImpl();
18 20
19 protected: 21 protected:
20 // WebFileWriterBase overrides 22 // WebFileWriterBase overrides
21 virtual void DoTruncate(const GURL& path, int64 offset) OVERRIDE; 23 virtual void DoTruncate(const GURL& path, int64 offset) OVERRIDE;
22 virtual void DoWrite(const GURL& path, const GURL& blob_url, 24 virtual void DoWrite(const GURL& path, const GURL& blob_url,
23 int64 offset) OVERRIDE; 25 int64 offset) OVERRIDE;
24 virtual void DoCancel() OVERRIDE; 26 virtual void DoCancel() OVERRIDE;
25 27
26 private: 28 private:
27 class CallbackDispatcher; 29 class CallbackDispatcher;
28 int request_id_; 30 int request_id_;
29 }; 31 };
30 32
33 } // namespace content
34
31 #endif // CONTENT_COMMON_FILEAPI_WEBFILEWRITER_IMPL_H_ 35 #endif // CONTENT_COMMON_FILEAPI_WEBFILEWRITER_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/fileapi/webfilesystem_impl.cc ('k') | content/common/fileapi/webfilewriter_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698