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

Unified Diff: chrome/installer/util/install_util.h

Issue 6490008: Fix user-to-system-level installation delegation. This looks to have been bro... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/installer/util/install_util.h
===================================================================
--- chrome/installer/util/install_util.h (revision 73979)
+++ chrome/installer/util/install_util.h (working copy)
@@ -15,10 +15,10 @@
#include <string>
#include "base/basictypes.h"
+#include "base/command_line.h"
+#include "chrome/installer/util/browser_distribution.h"
#include "chrome/installer/util/util_constants.h"
-class BrowserDistribution;
-class CommandLine;
class Version;
class WorkItemList;
@@ -39,8 +39,9 @@
// Reads the uninstall command for Chromium from registry and returns it.
// If system_install is true the command is read from HKLM, otherwise
// from HKCU.
- static std::wstring GetChromeUninstallCmd(bool system_install,
- BrowserDistribution* dist);
+ static CommandLine GetChromeUninstallCmd(
+ bool system_install,
+ BrowserDistribution::Type distribution_type);
// Find the version of Chrome installed on the system by checking the
// Google Update registry key. Returns the version or NULL if no version is

Powered by Google App Engine
This is Rietveld 408576698