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

Side by Side Diff: chrome/browser/nacl_host/nacl_browser.cc

Issue 15078003: Cleanup: Remove unneeded base/file_util.h includes in base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: rebase Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/browser/nacl_host/nacl_browser.h" 5 #include "chrome/browser/nacl_host/nacl_browser.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/file_util.h"
8 #include "base/message_loop.h" 9 #include "base/message_loop.h"
9 #include "base/metrics/histogram.h" 10 #include "base/metrics/histogram.h"
10 #include "base/path_service.h" 11 #include "base/path_service.h"
11 #include "base/pickle.h" 12 #include "base/pickle.h"
12 #include "base/strings/string_split.h" 13 #include "base/strings/string_split.h"
13 #include "base/win/windows_version.h" 14 #include "base/win/windows_version.h"
14 #include "build/build_config.h" 15 #include "build/build_config.h"
15 #include "chrome/common/chrome_paths.h" 16 #include "chrome/common/chrome_paths.h"
16 #include "chrome/common/chrome_paths_internal.h" 17 #include "chrome/common/chrome_paths_internal.h"
17 #include "chrome/common/chrome_switches.h" 18 #include "chrome/common/chrome_switches.h"
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 // because it can degrade the responsiveness of the browser. 465 // because it can degrade the responsiveness of the browser.
465 // The task is sequenced so that multiple writes happen in order. 466 // The task is sequenced so that multiple writes happen in order.
466 content::BrowserThread::PostBlockingPoolSequencedTask( 467 content::BrowserThread::PostBlockingPoolSequencedTask(
467 kValidationCacheSequenceName, 468 kValidationCacheSequenceName,
468 FROM_HERE, 469 FROM_HERE,
469 base::Bind(WriteCache, validation_cache_file_path_, 470 base::Bind(WriteCache, validation_cache_file_path_,
470 base::Owned(pickle))); 471 base::Owned(pickle)));
471 } 472 }
472 validation_cache_is_modified_ = false; 473 validation_cache_is_modified_ = false;
473 } 474 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698