diff options
author | gab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-16 18:02:09 +0000 |
---|---|---|
committer | gab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-16 18:02:09 +0000 |
commit | 8fb6a8d96860124354f7fd5ecab378d47644fc07 (patch) | |
tree | 14c2b467aa36e249b22a9000d926ec3dac8294b7 /chrome/browser/chrome_browser_main.cc | |
parent | 5af8527e5662edc372f7c4f075b88e550995b830 (diff) | |
download | chromium_src-8fb6a8d96860124354f7fd5ecab378d47644fc07.zip chromium_src-8fb6a8d96860124354f7fd5ecab378d47644fc07.tar.gz chromium_src-8fb6a8d96860124354f7fd5ecab378d47644fc07.tar.bz2 |
Move winaura specific methods and members from chrome/browser/browser_process.h to chrome/browser/browser_process_platform_part_winaura.h
Precursor CL to https://codereview.chromium.org/14576015/
BUG=235648, 232842, 179830
Review URL: https://chromiumcodereview.appspot.com/14698027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200576 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_browser_main.cc')
-rw-r--r-- | chrome/browser/chrome_browser_main.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc index 70882be..1763b86 100644 --- a/chrome/browser/chrome_browser_main.cc +++ b/chrome/browser/chrome_browser_main.cc @@ -179,6 +179,12 @@ #include "ui/base/win/dpi.h" #endif // defined(OS_WIN) +#if defined(OS_WIN) && defined(USE_AURA) +#include "chrome/browser/browser_process_platform_part_aurawin.h" +#else +#include "chrome/browser/browser_process_platform_part.h" +#endif + #if defined(OS_MACOSX) #include <Security/Security.h> @@ -435,7 +441,8 @@ bool ProcessSingletonNotificationCallback( base::Time::Now() - base::Time::FromInternalValue(remote_start_time)); } - g_browser_process->PlatformSpecificCommandLineProcessing(command_line); + g_browser_process->platform_part()->PlatformSpecificCommandLineProcessing( + command_line); // TODO(erikwright): Consider removing this - AFAIK it is no longer used. // Handle the --uninstall-extension startup action. This needs to done here in |