Don't crash when SimpleCache index is corrupt.
[chromium-blink-merge.git] / chrome / browser / browser_util_win.h
blobc67e533f81c29ba55cd2c1bd103bfae3e6f7ea31
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.
5 #ifndef CHROME_BROWSER_BROWSER_UTIL_WIN_H_
6 #define CHROME_BROWSER_BROWSER_UTIL_WIN_H_
8 namespace browser_util {
10 // Check if current chrome.exe is already running as a browser process by trying
11 // to create a Global event with name same as full path of chrome.exe. This
12 // method caches the handle to this event so on subsequent calls also it can
13 // first close the handle and check for any other process holding the handle to
14 // the event.
15 bool IsBrowserAlreadyRunning();
17 } // namespace browser_util
19 #endif // CHROME_BROWSER_BROWSER_UTIL_WIN_H_