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

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

Issue 3071012: Cleanup: Remove unneeded headers from base/ (part 1) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « chrome/installer/setup/setup_main.cc ('k') | chrome/test/selenium/selenium_test.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 defines a specific implementation of BrowserDistribution class for 5 // This file defines a specific implementation of BrowserDistribution class for
6 // Chrome Frame. It overrides the bare minimum of methods necessary to get a 6 // Chrome Frame. It overrides the bare minimum of methods necessary to get a
7 // Chrome Frame installer that does not interact with Google Chrome or 7 // Chrome Frame installer that does not interact with Google Chrome or
8 // Chromium installations. 8 // Chromium installations.
9 9
10 #include "chrome/installer/util/chrome_frame_distribution.h" 10 #include "chrome/installer/util/chrome_frame_distribution.h"
11 11
12 #include <string> 12 #include <string>
13 #include <windows.h> 13 #include <windows.h>
14 14
15 #include "base/logging.h" 15 #include "base/logging.h"
16 #include "base/registry.h"
17 #include "base/string_util.h" 16 #include "base/string_util.h"
18 #include "chrome/installer/util/l10n_string_util.h" 17 #include "chrome/installer/util/l10n_string_util.h"
19 #include "chrome/installer/util/google_update_constants.h" 18 #include "chrome/installer/util/google_update_constants.h"
20 #include "chrome/installer/util/google_update_settings.h" 19 #include "chrome/installer/util/google_update_settings.h"
21 20
22 #include "installer_util_strings.h" 21 #include "installer_util_strings.h"
23 22
24 namespace { 23 namespace {
25 const wchar_t kChromeFrameGuid[] = L"{8BA986DA-5100-405E-AA35-86F34A02ACBF}"; 24 const wchar_t kChromeFrameGuid[] = L"{8BA986DA-5100-405E-AA35-86F34A02ACBF}";
26 } 25 }
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 bool ChromeFrameDistribution::CanSetAsDefault() { 104 bool ChromeFrameDistribution::CanSetAsDefault() {
106 return false; 105 return false;
107 } 106 }
108 107
109 void ChromeFrameDistribution::UpdateDiffInstallStatus(bool system_install, 108 void ChromeFrameDistribution::UpdateDiffInstallStatus(bool system_install,
110 bool incremental_install, installer_util::InstallStatus install_status) { 109 bool incremental_install, installer_util::InstallStatus install_status) {
111 GoogleUpdateSettings::UpdateDiffInstallStatus(system_install, 110 GoogleUpdateSettings::UpdateDiffInstallStatus(system_install,
112 incremental_install, GetInstallReturnCode(install_status), 111 incremental_install, GetInstallReturnCode(install_status),
113 kChromeFrameGuid); 112 kChromeFrameGuid);
114 } 113 }
OLDNEW
« no previous file with comments | « chrome/installer/setup/setup_main.cc ('k') | chrome/test/selenium/selenium_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698