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

Side by Side Diff: chrome/browser/extensions/external_pref_extension_loader.cc

Issue 10413022: Move dir_reader to base/files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix linux Created 8 years, 5 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
« no previous file with comments | « base/files/dir_reader_posix_unittest.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 (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/extensions/external_pref_extension_loader.h" 5 #include "chrome/browser/extensions/external_pref_extension_loader.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/dir_reader_posix.h"
9 #include "base/file_path.h" 8 #include "base/file_path.h"
10 #include "base/file_util.h" 9 #include "base/file_util.h"
11 #include "base/json/json_file_value_serializer.h" 10 #include "base/json/json_file_value_serializer.h"
12 #include "base/json/json_string_value_serializer.h" 11 #include "base/json/json_string_value_serializer.h"
13 #include "base/logging.h" 12 #include "base/logging.h"
14 #include "base/metrics/histogram.h" 13 #include "base/metrics/histogram.h"
15 #include "base/path_service.h" 14 #include "base/path_service.h"
16 #include "base/string_util.h" 15 #include "base/string_util.h"
17 #include "base/utf_string_conversions.h" 16 #include "base/utf_string_conversions.h"
18 #include "chrome/common/chrome_paths.h" 17 #include "chrome/common/chrome_paths.h"
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); 244 CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
246 prefs_.reset(testing_prefs_->DeepCopy()); 245 prefs_.reset(testing_prefs_->DeepCopy());
247 LoadFinished(); 246 LoadFinished();
248 } 247 }
249 248
250 ExternalTestingExtensionLoader::~ExternalTestingExtensionLoader() {} 249 ExternalTestingExtensionLoader::~ExternalTestingExtensionLoader() {}
251 250
252 const FilePath ExternalTestingExtensionLoader::GetBaseCrxFilePath() { 251 const FilePath ExternalTestingExtensionLoader::GetBaseCrxFilePath() {
253 return fake_base_path_; 252 return fake_base_path_;
254 } 253 }
OLDNEW
« no previous file with comments | « base/files/dir_reader_posix_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698