| OLD | NEW |
| 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/installer/util/master_preferences.h" | 5 #include "chrome/installer/util/master_preferences.h" |
| 6 | 6 |
| 7 #include "base/environment.h" | 7 #include "base/environment.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/json/json_string_value_serializer.h" | 9 #include "base/json/json_string_value_serializer.h" |
| 10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.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/string_util.h" | 13 #include "base/strings/string_util.h" |
| 14 #include "chrome/common/env_vars.h" | 14 #include "chrome/common/env_vars.h" |
| 15 #include "chrome/common/pref_names.h" | 15 #include "chrome/common/pref_names.h" |
| 16 #include "chrome/installer/util/master_preferences_constants.h" | 16 #include "chrome/installer/util/master_preferences_constants.h" |
| 17 #include "chrome/installer/util/util_constants.h" | 17 #include "chrome/installer/util/util_constants.h" |
| 18 | 18 |
| 19 namespace { | 19 namespace { |
| 20 | 20 |
| 21 const char kFirstRunTabs[] = "first_run_tabs"; | 21 const char kFirstRunTabs[] = "first_run_tabs"; |
| 22 | 22 |
| 23 base::LazyInstance<installer::MasterPreferences> g_master_preferences = | 23 base::LazyInstance<installer::MasterPreferences> g_master_preferences = |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 master_dictionary_->GetString(prefs::kVariationsSeed, &variations_seed); | 315 master_dictionary_->GetString(prefs::kVariationsSeed, &variations_seed); |
| 316 return variations_seed; | 316 return variations_seed; |
| 317 } | 317 } |
| 318 | 318 |
| 319 // static | 319 // static |
| 320 const MasterPreferences& MasterPreferences::ForCurrentProcess() { | 320 const MasterPreferences& MasterPreferences::ForCurrentProcess() { |
| 321 return g_master_preferences.Get(); | 321 return g_master_preferences.Get(); |
| 322 } | 322 } |
| 323 | 323 |
| 324 } // namespace installer | 324 } // namespace installer |
| OLD | NEW |