| Index: trunk/src/chrome/browser/shell_integration.cc
|
| ===================================================================
|
| --- trunk/src/chrome/browser/shell_integration.cc (revision 192508)
|
| +++ trunk/src/chrome/browser/shell_integration.cc (working copy)
|
| @@ -18,10 +18,6 @@
|
| #include "chrome/common/pref_names.h"
|
| #include "content/public/browser/browser_thread.h"
|
|
|
| -#if defined(OS_CHROMEOS)
|
| -#include "chromeos/chromeos_switches.h"
|
| -#endif
|
| -
|
| using content::BrowserThread;
|
|
|
| ShellIntegration::DefaultWebClientSetPermission
|
| @@ -85,10 +81,9 @@
|
| }
|
|
|
| #if defined(OS_CHROMEOS)
|
| - base::FilePath profile = cmd_line.GetSwitchValuePath(
|
| - chromeos::switches::kLoginProfile);
|
| + base::FilePath profile = cmd_line.GetSwitchValuePath(switches::kLoginProfile);
|
| if (!profile.empty())
|
| - new_cmd_line.AppendSwitchPath(chromeos::switches::kLoginProfile, profile);
|
| + new_cmd_line.AppendSwitchPath(switches::kLoginProfile, profile);
|
| #else
|
| if (!profile_path.empty() && !extension_app_id.empty())
|
| new_cmd_line.AppendSwitchPath(switches::kProfileDirectory,
|
|
|