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

Side by Side Diff: chromecast/common/chromecast_config.cc

Issue 559743002: Cleanup: Use base/files/file_util.h instead of base/file_util.h in cc/, chromecast/, cloud_print/, … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix win 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
« no previous file with comments | « chromecast/common/cast_paths.cc ('k') | cloud_print/common/win/install_utils.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 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 "chromecast/common/chromecast_config.h" 5 #include "chromecast/common/chromecast_config.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/file_util.h" 10 #include "base/files/file_util.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/path_service.h" 12 #include "base/path_service.h"
13 #include "base/prefs/json_pref_store.h" 13 #include "base/prefs/json_pref_store.h"
14 #include "base/prefs/pref_registry_simple.h" 14 #include "base/prefs/pref_registry_simple.h"
15 #include "base/prefs/pref_service_factory.h" 15 #include "base/prefs/pref_service_factory.h"
16 #include "base/prefs/pref_store.h" 16 #include "base/prefs/pref_store.h"
17 #include "base/strings/string_number_conversions.h" 17 #include "base/strings/string_number_conversions.h"
18 #include "chromecast/common/cast_paths.h" 18 #include "chromecast/common/cast_paths.h"
19 #include "chromecast/common/pref_names.h" 19 #include "chromecast/common/pref_names.h"
20 #include "chromecast/metrics/cast_metrics_prefs.h" 20 #include "chromecast/metrics/cast_metrics_prefs.h"
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 if (pref_service_->IsUserModifiablePreference(key.c_str())) { 132 if (pref_service_->IsUserModifiablePreference(key.c_str())) {
133 VLOG(1) << "Set config: key=" << key << ", value=" << value; 133 VLOG(1) << "Set config: key=" << key << ", value=" << value;
134 pref_service_->SetInteger(key.c_str(), value); 134 pref_service_->SetInteger(key.c_str(), value);
135 } else { 135 } else {
136 LOG(ERROR) << "Cannot set read-only config: key=" << key 136 LOG(ERROR) << "Cannot set read-only config: key=" << key
137 << ", value=" << value; 137 << ", value=" << value;
138 } 138 }
139 } 139 }
140 140
141 } // namespace chromecast 141 } // namespace chromecast
OLDNEW
« no previous file with comments | « chromecast/common/cast_paths.cc ('k') | cloud_print/common/win/install_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698