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 // This file contains functions processing master preference file used by | 5 // This file contains functions processing master preference file used by |
6 // setup and first run. | 6 // setup and first run. |
7 | 7 |
8 #ifndef CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_ | 8 #ifndef CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_ |
9 #define CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_ | 9 #define CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_ |
10 | 10 |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 std::string GetVariationsSeed() const; | 163 std::string GetVariationsSeed() const; |
164 | 164 |
165 // Returns the variations seed signature entry from the master prefs. | 165 // Returns the variations seed signature entry from the master prefs. |
166 std::string GetVariationsSeedSignature() const; | 166 std::string GetVariationsSeedSignature() const; |
167 | 167 |
168 // Returns true iff the master preferences were successfully read from a file. | 168 // Returns true iff the master preferences were successfully read from a file. |
169 bool read_from_file() const { | 169 bool read_from_file() const { |
170 return preferences_read_from_file_; | 170 return preferences_read_from_file_; |
171 } | 171 } |
172 | 172 |
173 bool is_multi_install() const { return false; } | |
174 | |
175 // Returns a reference to this MasterPreferences' root dictionary of values. | 173 // Returns a reference to this MasterPreferences' root dictionary of values. |
176 const base::DictionaryValue& master_dictionary() const { | 174 const base::DictionaryValue& master_dictionary() const { |
177 return *master_dictionary_.get(); | 175 return *master_dictionary_.get(); |
178 } | 176 } |
179 | 177 |
180 // Returns a static preference object that has been initialized with the | 178 // Returns a static preference object that has been initialized with the |
181 // CommandLine object for the current process. | 179 // CommandLine object for the current process. |
182 // NOTE: Must not be called before CommandLine::Init() is called! | 180 // NOTE: Must not be called before CommandLine::Init() is called! |
183 // OTHER NOTE: Not thread safe. | 181 // OTHER NOTE: Not thread safe. |
184 static const MasterPreferences& ForCurrentProcess(); | 182 static const MasterPreferences& ForCurrentProcess(); |
(...skipping 19 matching lines...) Expand all Loading... |
204 base::DictionaryValue* distribution_ = nullptr; | 202 base::DictionaryValue* distribution_ = nullptr; |
205 bool preferences_read_from_file_ = false; | 203 bool preferences_read_from_file_ = false; |
206 | 204 |
207 private: | 205 private: |
208 DISALLOW_COPY_AND_ASSIGN(MasterPreferences); | 206 DISALLOW_COPY_AND_ASSIGN(MasterPreferences); |
209 }; | 207 }; |
210 | 208 |
211 } // namespace installer | 209 } // namespace installer |
212 | 210 |
213 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_ | 211 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_ |
OLD | NEW |