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

Unified Diff: content/child/fileapi/webfilewriter_base.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/fileapi/webfilesystem_impl.cc ('k') | content/child/fileapi/webfilewriter_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/fileapi/webfilewriter_base.h
diff --git a/content/child/fileapi/webfilewriter_base.h b/content/child/fileapi/webfilewriter_base.h
index af63ffbac88df0172018bb7db3b792b4981476d7..5168e3cf545dc10b24243909d189594d0ab0f8a9 100644
--- a/content/child/fileapi/webfilewriter_base.h
+++ b/content/child/fileapi/webfilewriter_base.h
@@ -10,7 +10,7 @@
#include "third_party/WebKit/public/platform/WebFileWriter.h"
#include "url/gurl.h"
-namespace WebKit {
+namespace blink {
class WebFileWriterClient;
class WebURL;
}
@@ -18,14 +18,14 @@ class WebURL;
namespace content {
class CONTENT_EXPORT WebFileWriterBase
- : public NON_EXPORTED_BASE(WebKit::WebFileWriter) {
+ : public NON_EXPORTED_BASE(blink::WebFileWriter) {
public:
- WebFileWriterBase(const GURL& path, WebKit::WebFileWriterClient* client);
+ WebFileWriterBase(const GURL& path, blink::WebFileWriterClient* client);
virtual ~WebFileWriterBase();
// WebFileWriter implementation
virtual void truncate(long long length);
- virtual void write(long long position, const WebKit::WebString& id);
+ virtual void write(long long position, const blink::WebString& id);
virtual void cancel();
protected:
@@ -61,7 +61,7 @@ class CONTENT_EXPORT WebFileWriterBase
void FinishCancel();
GURL path_;
- WebKit::WebFileWriterClient* client_;
+ blink::WebFileWriterClient* client_;
OperationType operation_;
CancelState cancel_state_;
};
« no previous file with comments | « content/child/fileapi/webfilesystem_impl.cc ('k') | content/child/fileapi/webfilewriter_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698