| 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 |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
| 15 #include "base/macros.h" |
| 15 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 17 #include "build/build_config.h" |
| 16 | 18 |
| 17 namespace base { | 19 namespace base { |
| 18 class DictionaryValue; | 20 class DictionaryValue; |
| 19 class FilePath; | 21 class FilePath; |
| 20 } | 22 } |
| 21 | 23 |
| 22 namespace installer { | 24 namespace installer { |
| 23 | 25 |
| 24 #if !defined(OS_MACOSX) | 26 #if !defined(OS_MACOSX) |
| 25 // This is the default name for the master preferences file used to pre-set | 27 // This is the default name for the master preferences file used to pre-set |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 bool chrome_; | 215 bool chrome_; |
| 214 bool multi_install_; | 216 bool multi_install_; |
| 215 | 217 |
| 216 private: | 218 private: |
| 217 DISALLOW_COPY_AND_ASSIGN(MasterPreferences); | 219 DISALLOW_COPY_AND_ASSIGN(MasterPreferences); |
| 218 }; | 220 }; |
| 219 | 221 |
| 220 } // namespace installer | 222 } // namespace installer |
| 221 | 223 |
| 222 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_ | 224 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_H_ |
| OLD | NEW |