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

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

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/installer/test/resource_updater.h ('k') | chrome/installer/util/duplicate_tree_detector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/auto_launch_util.h
diff --git a/chrome/installer/util/auto_launch_util.h b/chrome/installer/util/auto_launch_util.h
index 862ebd077b15e66f3b796be1e75bf606c95a5229..2f2b650ff8582692af01f5c3b12f545a6d945fa4 100644
--- a/chrome/installer/util/auto_launch_util.h
+++ b/chrome/installer/util/auto_launch_util.h
@@ -7,7 +7,9 @@
#include "base/string16.h"
+namespace base {
class FilePath;
+}
// A namespace containing the platform specific implementation of setting Chrome
// to launch at user login.
@@ -32,7 +34,7 @@ namespace auto_launch_util {
// (as it will default to the application path of the current executable).
bool AutoStartRequested(const string16& profile_directory,
bool window_requested,
- const FilePath& application_path);
+ const base::FilePath& application_path);
// Disables all auto-start features. |profile_directory| is the name of the
// directory (leaf, not the full path) that contains the profile that was set
@@ -47,7 +49,7 @@ void DisableAllAutoStartFeatures(const string16& profile_directory);
// auto-launch, ie. the installer. This is because |application_path|, if left
// blank, defaults to the application path of the current executable.
void EnableForegroundStartAtLogin(const string16& profile_directory,
- const FilePath& application_path);
+ const base::FilePath& application_path);
// Disables auto-starting Chrome in foreground mode at user login.
// |profile_directory| is the name of the directory (leaf, not the full path)
« no previous file with comments | « chrome/installer/test/resource_updater.h ('k') | chrome/installer/util/duplicate_tree_detector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698