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

Unified Diff: chrome/app/client_util.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, 8 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
« no previous file with comments | « chrome/app/client_util.h ('k') | chrome/browser/browser_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/client_util.cc
===================================================================
--- chrome/app/client_util.cc (revision 45984)
+++ chrome/app/client_util.cc (working copy)
@@ -18,6 +18,8 @@
// The entry point signature of chrome.dll.
typedef int (*DLL_MAIN)(HINSTANCE, sandbox::SandboxInterfaceInfo*, wchar_t*);
+typedef void (*RelaunchChromeBrowserWithNewCommandLineIfNeededFunc)();
+
// Not generic, we only handle strings up to 128 chars.
bool ReadRegistryStr(HKEY key, const wchar_t* name, std::wstring* value) {
BYTE out[128 * sizeof(wchar_t)];
@@ -196,6 +198,19 @@
return OnBeforeExit(rc);
}
+void MainDllLoader::RelaunchChromeBrowserWithNewCommandLineIfNeeded() {
+ RelaunchChromeBrowserWithNewCommandLineIfNeededFunc relaunch_function =
+ reinterpret_cast<RelaunchChromeBrowserWithNewCommandLineIfNeededFunc>(
+ ::GetProcAddress(dll_,
+ "RelaunchChromeBrowserWithNewCommandLineIfNeeded"));
+ if (!relaunch_function) {
+ LOG(ERROR) << "Could not find exported function "
+ << "RelaunchChromeBrowserWithNewCommandLineIfNeeded";
+ } else {
+ relaunch_function();
+ }
+}
+
//=============================================================================
class ChromeDllLoader : public MainDllLoader {
« no previous file with comments | « chrome/app/client_util.h ('k') | chrome/browser/browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698