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

Side by Side Diff: components/browser_watcher/watcher_main_win.h

Issue 717223002: Browser watcher end-end-to-end . (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/lkgr
Patch Set: Move to components Created 6 years, 1 month 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
OLDNEW
(Empty)
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
erikwright (departed) 2014/11/14 19:46:09 I would rename this file to watcher_main_api_win o
Sigurður Ásgeirsson 2014/11/17 15:26:58 Done.
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 COMPONENTS_BROWSER_WATCHER_WATCHER_MAIN_WIN_H_
6 #define COMPONENTS_BROWSER_WATCHER_WATCHER_MAIN_WIN_H_
7
8 #include "base/files/file_path.h"
9
10 namespace browser_watcher {
11
12 // The name of the watcher DLL.
13 extern const base::FilePath::CharType kWatcherDll[];
14 // The name of the watcher DLLs entrypoint function.
15 extern const char kWatcherDLLEntrypoint[];
16
17 // The type of the watcher DLL's main entry point.
18 // The |registry_path| parameter is the path under HKCU where the exit
19 // codes will be written.
20 typedef int (*WatcherMainFunction)(const wchar_t* registry_path);
21
22 } // namespace browser_watcher
23
24 #endif // COMPONENTS_BROWSER_WATCHER_WATCHER_MAIN_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698