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 declares a class that contains various method related to branding. | 5 // This file declares a class that contains various method related to branding. |
6 | 6 |
7 #ifndef CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ | 7 #ifndef CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ |
8 #define CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ | 8 #define CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/basictypes.h" | |
13 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/macros.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
16 #include "base/version.h" | 16 #include "base/version.h" |
| 17 #include "build/build_config.h" |
17 #include "chrome/installer/util/util_constants.h" | 18 #include "chrome/installer/util/util_constants.h" |
18 | 19 |
19 #if defined(OS_WIN) | 20 #if defined(OS_WIN) |
20 #include <windows.h> // NOLINT | 21 #include <windows.h> // NOLINT |
21 #endif | 22 #endif |
22 | 23 |
23 class AppRegistrationData; | 24 class AppRegistrationData; |
24 | 25 |
25 class BrowserDistribution { | 26 class BrowserDistribution { |
26 public: | 27 public: |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 | 172 |
172 scoped_ptr<AppRegistrationData> app_reg_data_; | 173 scoped_ptr<AppRegistrationData> app_reg_data_; |
173 | 174 |
174 private: | 175 private: |
175 BrowserDistribution(); | 176 BrowserDistribution(); |
176 | 177 |
177 DISALLOW_COPY_AND_ASSIGN(BrowserDistribution); | 178 DISALLOW_COPY_AND_ASSIGN(BrowserDistribution); |
178 }; | 179 }; |
179 | 180 |
180 #endif // CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ | 181 #endif // CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ |
OLD | NEW |