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

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

Issue 1633021: Detect new instance of the browser when running in the background in persiste... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/app/chrome_exe_main_gtk.cc » ('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) 2006-2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2010 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 "base/win_util.h" 10 #include "base/win_util.h"
(...skipping 26 matching lines...) Expand all
37 if (!sandbox_info.broker_services) 37 if (!sandbox_info.broker_services)
38 sandbox_info.target_services = sandbox::SandboxFactory::GetTargetServices(); 38 sandbox_info.target_services = sandbox::SandboxFactory::GetTargetServices();
39 39
40 if (win_util::GetWinVersion() < win_util::WINVERSION_VISTA) { 40 if (win_util::GetWinVersion() < win_util::WINVERSION_VISTA) {
41 // Enforces strong DEP support. Vista uses the NXCOMPAT flag in the exe. 41 // Enforces strong DEP support. Vista uses the NXCOMPAT flag in the exe.
42 sandbox::SetCurrentProcessDEP(sandbox::DEP_ENABLED); 42 sandbox::SetCurrentProcessDEP(sandbox::DEP_ENABLED);
43 } 43 }
44 // Load and launch the chrome dll. *Everything* happens inside. 44 // Load and launch the chrome dll. *Everything* happens inside.
45 MainDllLoader* loader = MakeMainDllLoader(); 45 MainDllLoader* loader = MakeMainDllLoader();
46 int rc = loader->Launch(instance, &sandbox_info); 46 int rc = loader->Launch(instance, &sandbox_info);
47 loader->RelaunchChromeBrowserWithNewCommandLineIfNeeded();
47 delete loader; 48 delete loader;
48 49
49 return rc; 50 return rc;
50 } 51 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/chrome_exe_main_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698