| Index: chrome/app/chrome_watcher_command_line_win.h
|
| diff --git a/chrome/app/chrome_watcher_command_line_win.h b/chrome/app/chrome_watcher_command_line_win.h
|
| index d4d4a97dba0b3e3ebf80b67c0302ed6e63225504..8e48f2c31216d3c98d430fc2b685fd14eaf25dcb 100644
|
| --- a/chrome/app/chrome_watcher_command_line_win.h
|
| +++ b/chrome/app/chrome_watcher_command_line_win.h
|
| @@ -24,16 +24,18 @@ base::CommandLine GenerateChromeWatcherCommandLine(
|
| DWORD main_thread_id,
|
| HANDLE on_initialized_event);
|
|
|
| +#define DLLEXPORT __declspec(dllexport)
|
| // Interprets the Command Line used to launch a Chrome Watcher process and
|
| // extracts the parent process and initialization event HANDLEs and the parent
|
| // process main thread ID. Verifies that the handles are usable in this process
|
| // before returning them. Returns true if all parameters are successfully parsed
|
| // and false otherwise. In case of partial failure, any successfully parsed
|
| // HANDLEs will be closed.
|
| -bool InterpretChromeWatcherCommandLine(
|
| +bool DLLEXPORT InterpretChromeWatcherCommandLine(
|
| const base::CommandLine& command_line,
|
| base::win::ScopedHandle* parent_process,
|
| DWORD* main_thread_id,
|
| base::win::ScopedHandle* on_initialized_event);
|
| +#undef DLLEXPORT
|
|
|
| #endif // CHROME_APP_CHROME_WATCHER_COMMAND_LINE_WIN_H_
|
|
|