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

Side by Side Diff: chrome/app/chrome_exe_main_win.cc

Issue 10497010: Revert 127714 - Load the metro driver dll at startup (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1084/src/
Patch Set: Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/app/metro_driver_win.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <windows.h> 5 #include <windows.h>
6 #include <tchar.h> 6 #include <tchar.h>
7 7
8 #include "base/at_exit.h" 8 #include "base/at_exit.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "chrome/app/breakpad_win.h" 10 #include "chrome/app/breakpad_win.h"
11 #include "chrome/app/client_util.h" 11 #include "chrome/app/client_util.h"
12 #include "chrome/app/metro_driver_win.h"
13 #include "content/public/app/startup_helper_win.h" 12 #include "content/public/app/startup_helper_win.h"
14 #include "content/public/common/result_codes.h" 13 #include "content/public/common/result_codes.h"
15 #include "sandbox/src/sandbox_factory.h" 14 #include "sandbox/src/sandbox_factory.h"
16 15
17 int RunChrome(HINSTANCE instance) { 16 int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t*, int) {
18 bool exit_now = true; 17 bool exit_now = true;
19 // We restarted because of a previous crash. Ask user if we should relaunch. 18 // We restarted because of a previous crash. Ask user if we should relaunch.
20 if (ShowRestartDialogIfCrashed(&exit_now)) { 19 if (ShowRestartDialogIfCrashed(&exit_now)) {
21 if (exit_now) 20 if (exit_now)
22 return content::RESULT_CODE_NORMAL_EXIT; 21 return content::RESULT_CODE_NORMAL_EXIT;
23 } 22 }
24 23
25 // Initialize the sandbox services. 24 // Initialize the sandbox services.
26 sandbox::SandboxInterfaceInfo sandbox_info = {0}; 25 sandbox::SandboxInterfaceInfo sandbox_info = {0};
27 content::InitializeSandboxInfo(&sandbox_info); 26 content::InitializeSandboxInfo(&sandbox_info);
28 27
29 // The exit manager is in charge of calling the dtors of singletons. 28 // The exit manager is in charge of calling the dtors of singletons.
30 base::AtExitManager exit_manager; 29 base::AtExitManager exit_manager;
31 30
32 // Initialize the commandline singleton from the environment. 31 // Initialize the commandline singleton from the environment.
33 CommandLine::Init(0, NULL); 32 CommandLine::Init(0, NULL);
34 33
35 // Load and launch the chrome dll. *Everything* happens inside. 34 // Load and launch the chrome dll. *Everything* happens inside.
36 MainDllLoader* loader = MakeMainDllLoader(); 35 MainDllLoader* loader = MakeMainDllLoader();
37 int rc = loader->Launch(instance, &sandbox_info); 36 int rc = loader->Launch(instance, &sandbox_info);
38 loader->RelaunchChromeBrowserWithNewCommandLineIfNeeded(); 37 loader->RelaunchChromeBrowserWithNewCommandLineIfNeeded();
39 delete loader; 38 delete loader;
39
40 return rc; 40 return rc;
41 } 41 }
42
43 int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE prev, wchar_t*, int) {
44 MetroDriver metro_driver;
45 if (metro_driver.in_metro_mode())
46 return metro_driver.RunInMetro(instance, &RunChrome);
47 // Not in metro mode, proceed as normal.
48 return RunChrome(instance);
49 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/metro_driver_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698