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

Side by Side Diff: chrome/installer/util/browser_distribution.h

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | « chrome/installer/util/beacons.cc ('k') | chrome/installer/util/channel_info.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 (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
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_
OLDNEW
« no previous file with comments | « chrome/installer/util/beacons.cc ('k') | chrome/installer/util/channel_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698