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

Unified Diff: Source/modules/filesystem/FileWriterBase.h

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | « Source/modules/filesystem/FileWriter.cpp ('k') | Source/modules/filesystem/FileWriterBase.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileWriterBase.h
diff --git a/Source/modules/filesystem/FileWriterBase.h b/Source/modules/filesystem/FileWriterBase.h
index 20cecf9c64242acdf706bbe306144840aa33ba64..8cf9b87c0dfa8e6a7c01689b25c508f9ceef0cd4 100644
--- a/Source/modules/filesystem/FileWriterBase.h
+++ b/Source/modules/filesystem/FileWriterBase.h
@@ -35,14 +35,14 @@
#include "wtf/PassOwnPtr.h"
#include "wtf/RefCounted.h"
-namespace WebKit { class WebFileWriter; }
+namespace blink { class WebFileWriter; }
namespace WebCore {
class FileWriterBase : public RefCounted<FileWriterBase> {
public:
virtual ~FileWriterBase();
- void initialize(PassOwnPtr<WebKit::WebFileWriter>, long long length);
+ void initialize(PassOwnPtr<blink::WebFileWriter>, long long length);
long long position() const
{
@@ -56,7 +56,7 @@ public:
protected:
FileWriterBase();
- WebKit::WebFileWriter* writer()
+ blink::WebFileWriter* writer()
{
return m_writer.get();
}
@@ -76,7 +76,7 @@ protected:
private:
friend class WTF::RefCounted<FileWriterBase>;
- OwnPtr<WebKit::WebFileWriter> m_writer;
+ OwnPtr<blink::WebFileWriter> m_writer;
long long m_position;
long long m_length;
};
« no previous file with comments | « Source/modules/filesystem/FileWriter.cpp ('k') | Source/modules/filesystem/FileWriterBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698