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

Side by Side Diff: webkit/fileapi/webfilewriter_base.cc

Issue 8787003: Update these includes to use the new header locations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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
« no previous file with comments | « webkit/fileapi/file_system_util.cc ('k') | webkit/fileapi/webfilewriter_base_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "webkit/fileapi/webfilewriter_base.h" 5 #include "webkit/fileapi/webfilewriter_base.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileError.h" 8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileError.h"
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileWriterClient.h " 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileWriterClient.h "
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" 10 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h"
11 #include "webkit/glue/webkit_glue.h" 11 #include "webkit/glue/webkit_glue.h"
12 12
13 namespace fileapi { 13 namespace fileapi {
14 14
15 WebFileWriterBase::WebFileWriterBase( 15 WebFileWriterBase::WebFileWriterBase(
16 const GURL& path, WebKit::WebFileWriterClient* client) 16 const GURL& path, WebKit::WebFileWriterClient* client)
17 : path_(path), 17 : path_(path),
18 client_(client), 18 client_(client),
19 operation_(kOperationNone), 19 operation_(kOperationNone),
20 cancel_state_(kCancelNotInProgress) { 20 cancel_state_(kCancelNotInProgress) {
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 136
137 void WebFileWriterBase::FinishCancel() { 137 void WebFileWriterBase::FinishCancel() {
138 DCHECK(kCancelReceivedWriteResponse == cancel_state_); 138 DCHECK(kCancelReceivedWriteResponse == cancel_state_);
139 DCHECK(kOperationNone != operation_); 139 DCHECK(kOperationNone != operation_);
140 cancel_state_ = kCancelNotInProgress; 140 cancel_state_ = kCancelNotInProgress;
141 operation_ = kOperationNone; 141 operation_ = kOperationNone;
142 client_->didFail(WebKit::WebFileErrorAbort); 142 client_->didFail(WebKit::WebFileErrorAbort);
143 } 143 }
144 144
145 } // namespace fileapi 145 } // namespace fileapi
OLDNEW
« no previous file with comments | « webkit/fileapi/file_system_util.cc ('k') | webkit/fileapi/webfilewriter_base_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698