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: chrome/browser/extensions/api/image_writer_private/destroy_partitions_operation.cc

Issue 486843004: Change base/file_utils.h includes to base/files/file_utils.h in chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bad merge Created 6 years, 3 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 | Annotate | Revision Log
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 "base/file_util.h" 5 #include "base/files/file_util.h"
6 #include "chrome/browser/extensions/api/image_writer_private/destroy_partitions_ operation.h" 6 #include "chrome/browser/extensions/api/image_writer_private/destroy_partitions_ operation.h"
7 #include "chrome/browser/extensions/api/image_writer_private/error_messages.h" 7 #include "chrome/browser/extensions/api/image_writer_private/error_messages.h"
8 #include "content/public/browser/browser_thread.h" 8 #include "content/public/browser/browser_thread.h"
9 9
10 namespace extensions { 10 namespace extensions {
11 namespace image_writer { 11 namespace image_writer {
12 12
13 // Number of bytes for the maximum partition table size. GUID partition tables 13 // Number of bytes for the maximum partition table size. GUID partition tables
14 // reside in the second sector of the disk. Disks can have up to 4k sectors. 14 // reside in the second sector of the disk. Disks can have up to 4k sectors.
15 // See http://crbug.com/328246 for more information. 15 // See http://crbug.com/328246 for more information.
(...skipping 25 matching lines...) Expand all
41 content::BrowserThread::PostTask( 41 content::BrowserThread::PostTask(
42 content::BrowserThread::FILE, 42 content::BrowserThread::FILE,
43 FROM_HERE, 43 FROM_HERE,
44 base::Bind(&DestroyPartitionsOperation::Write, 44 base::Bind(&DestroyPartitionsOperation::Write,
45 this, 45 this,
46 base::Bind(&DestroyPartitionsOperation::Finish, this))); 46 base::Bind(&DestroyPartitionsOperation::Finish, this)));
47 } 47 }
48 48
49 } // namespace image_writer 49 } // namespace image_writer
50 } // namespace extensions 50 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/i18n/i18n_apitest.cc ('k') | chrome/browser/extensions/api/image_writer_private/operation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698