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

Side by Side Diff: chrome/installer/util/google_update_settings_unittest.cc

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/google_update_settings.cc ('k') | chrome/installer/util/html_dialog.h » ('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 #include "chrome/installer/util/google_update_settings.h" 5 #include "chrome/installer/util/google_update_settings.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 #include <shlwapi.h> // For SHDeleteKey. 8 #include <shlwapi.h> // For SHDeleteKey.
9 #include <stddef.h>
9 10
10 #include "base/base_paths.h" 11 #include "base/base_paths.h"
12 #include "base/macros.h"
11 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
12 #include "base/path_service.h" 14 #include "base/path_service.h"
13 #include "base/strings/utf_string_conversions.h" 15 #include "base/strings/utf_string_conversions.h"
14 #include "base/test/scoped_path_override.h" 16 #include "base/test/scoped_path_override.h"
15 #include "base/test/test_reg_util_win.h" 17 #include "base/test/test_reg_util_win.h"
16 #include "base/win/registry.h" 18 #include "base/win/registry.h"
17 #include "base/win/win_util.h" 19 #include "base/win/win_util.h"
18 #include "chrome/common/chrome_constants.h" 20 #include "chrome/common/chrome_constants.h"
19 #include "chrome/installer/util/app_registration_data.h" 21 #include "chrome/installer/util/app_registration_data.h"
20 #include "chrome/installer/util/browser_distribution.h" 22 #include "chrome/installer/util/browser_distribution.h"
(...skipping 1343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1364 StatsState(StatsState::kSystemLevel, StatsState::MULTI_INSTALL, 1366 StatsState(StatsState::kSystemLevel, StatsState::MULTI_INSTALL,
1365 StatsState::FALSE_SETTING, StatsState::FALSE_SETTING), 1367 StatsState::FALSE_SETTING, StatsState::FALSE_SETTING),
1366 StatsState(StatsState::kSystemLevel, StatsState::MULTI_INSTALL, 1368 StatsState(StatsState::kSystemLevel, StatsState::MULTI_INSTALL,
1367 StatsState::FALSE_SETTING, StatsState::TRUE_SETTING), 1369 StatsState::FALSE_SETTING, StatsState::TRUE_SETTING),
1368 StatsState(StatsState::kSystemLevel, StatsState::MULTI_INSTALL, 1370 StatsState(StatsState::kSystemLevel, StatsState::MULTI_INSTALL,
1369 StatsState::TRUE_SETTING, StatsState::NO_SETTING), 1371 StatsState::TRUE_SETTING, StatsState::NO_SETTING),
1370 StatsState(StatsState::kSystemLevel, StatsState::MULTI_INSTALL, 1372 StatsState(StatsState::kSystemLevel, StatsState::MULTI_INSTALL,
1371 StatsState::TRUE_SETTING, StatsState::FALSE_SETTING), 1373 StatsState::TRUE_SETTING, StatsState::FALSE_SETTING),
1372 StatsState(StatsState::kSystemLevel, StatsState::MULTI_INSTALL, 1374 StatsState(StatsState::kSystemLevel, StatsState::MULTI_INSTALL,
1373 StatsState::TRUE_SETTING, StatsState::TRUE_SETTING))); 1375 StatsState::TRUE_SETTING, StatsState::TRUE_SETTING)));
OLDNEW
« no previous file with comments | « chrome/installer/util/google_update_settings.cc ('k') | chrome/installer/util/html_dialog.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698