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

Side by Side Diff: chrome/browser/browser_util_win.h

Issue 6861001: first-run: Pull IsBrowserAlreadyRunning() out of upgrade_util_win.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser_shutdown.cc ('k') | chrome/browser/browser_util_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_BROWSER_UTIL_WIN_H_
6 #define CHROME_BROWSER_BROWSER_UTIL_WIN_H_
7 #pragma once
8
9 namespace browser_util {
10
11 // Check if current chrome.exe is already running as a browser process by trying
12 // to create a Global event with name same as full path of chrome.exe. This
13 // method caches the handle to this event so on subsequent calls also it can
14 // first close the handle and check for any other process holding the handle to
15 // the event.
16 bool IsBrowserAlreadyRunning();
17
18 } // namespace browser_util
19
20 #endif // CHROME_BROWSER_BROWSER_UTIL_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/browser_shutdown.cc ('k') | chrome/browser/browser_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698