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

Unified Diff: chrome/browser/chrome_browser_main.cc

Issue 14698027: Move winaura specific methods and members from chrome/browser/browser_process.h to chrome/browser/b… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix includes in testing_browser_process_platform_part.h Created 7 years, 7 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/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
« no previous file with comments | « chrome/browser/browser_process_platform_part_chromeos.cc ('k') | chrome/browser/metro_viewer/metro_viewer_process_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698