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

Side by Side Diff: chrome/utility/image_writer/image_writer.cc

Issue 1966303002: Fix include path for moved thread_task_runner_handle.h header in chrome/utility/image_writer/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: unflip unrelated header Created 4 years, 7 months 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
« no previous file with comments | « chrome/utility/image_writer/disk_unmounter_mac.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "chrome/utility/image_writer/image_writer.h" 5 #include "chrome/utility/image_writer/image_writer.h"
6 6
7 #include <string.h> 7 #include <string.h>
8 8
9 #include "base/location.h" 9 #include "base/location.h"
10 #include "base/memory/aligned_memory.h" 10 #include "base/memory/aligned_memory.h"
11 #include "base/single_thread_task_runner.h" 11 #include "base/single_thread_task_runner.h"
12 #include "base/thread_task_runner_handle.h" 12 #include "base/threading/thread_task_runner_handle.h"
13 #include "build/build_config.h" 13 #include "build/build_config.h"
14 #include "chrome/utility/image_writer/error_messages.h" 14 #include "chrome/utility/image_writer/error_messages.h"
15 #include "chrome/utility/image_writer/image_writer_handler.h" 15 #include "chrome/utility/image_writer/image_writer_handler.h"
16 #include "content/public/utility/utility_thread.h" 16 #include "content/public/utility/utility_thread.h"
17 17
18 #if defined(OS_MACOSX) 18 #if defined(OS_MACOSX)
19 #include "chrome/utility/image_writer/disk_unmounter_mac.h" 19 #include "chrome/utility/image_writer/disk_unmounter_mac.h"
20 #endif 20 #endif
21 21
22 namespace image_writer { 22 namespace image_writer {
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 running_ = false; 196 running_ = false;
197 } else { 197 } else {
198 // Unable to read entire file. 198 // Unable to read entire file.
199 LOG(ERROR) << "Failed to read " << kBurningBlockSize << " bytes of image " 199 LOG(ERROR) << "Failed to read " << kBurningBlockSize << " bytes of image "
200 << "at offset " << bytes_processed_; 200 << "at offset " << bytes_processed_;
201 Error(error::kReadImage); 201 Error(error::kReadImage);
202 } 202 }
203 } 203 }
204 204
205 } // namespace image_writer 205 } // namespace image_writer
OLDNEW
« no previous file with comments | « chrome/utility/image_writer/disk_unmounter_mac.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698