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

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

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/webfilewriter_base.h ('k') | content/child/fileapi/webfilewriter_base_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/fileapi/webfilewriter_base.cc
diff --git a/content/child/fileapi/webfilewriter_base.cc b/content/child/fileapi/webfilewriter_base.cc
index 5a97b579a88a3d4fe4a8afebacbb62518d50f5da..cde644ba867fba35324aabe0e8c68978efd0180b 100644
--- a/content/child/fileapi/webfilewriter_base.cc
+++ b/content/child/fileapi/webfilewriter_base.cc
@@ -15,7 +15,7 @@ using fileapi::PlatformFileErrorToWebFileError;
namespace content {
WebFileWriterBase::WebFileWriterBase(const GURL& path,
- WebKit::WebFileWriterClient* client)
+ blink::WebFileWriterClient* client)
: path_(path),
client_(client),
operation_(kOperationNone),
@@ -32,7 +32,7 @@ void WebFileWriterBase::truncate(long long length) {
void WebFileWriterBase::write(
long long position,
- const WebKit::WebString& id) {
+ const blink::WebString& id) {
DCHECK_EQ(kOperationNone, operation_);
DCHECK_EQ(kCancelNotInProgress, cancel_state_);
operation_ = kOperationWrite;
@@ -147,7 +147,7 @@ void WebFileWriterBase::FinishCancel() {
DCHECK(kOperationNone != operation_);
cancel_state_ = kCancelNotInProgress;
operation_ = kOperationNone;
- client_->didFail(WebKit::WebFileErrorAbort);
+ client_->didFail(blink::WebFileErrorAbort);
}
} // namespace content
« no previous file with comments | « content/child/fileapi/webfilewriter_base.h ('k') | content/child/fileapi/webfilewriter_base_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698