| Index: chrome/browser/chrome_browser_main.cc
|
| diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
|
| index 70882bec988b99f8eccfd2961fbedd045f9cde21..1763b86a8767e14181463e1a17759cfbebdc68fa 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
|
|
|