| Index: trunk/src/chrome/browser/browser_process.h
|
| ===================================================================
|
| --- trunk/src/chrome/browser/browser_process.h (revision 200655)
|
| +++ trunk/src/chrome/browser/browser_process.h (working copy)
|
| @@ -20,6 +20,7 @@
|
| class BookmarkPromptController;
|
| class BrowserProcessPlatformPart;
|
| class ChromeNetLog;
|
| +class CommandLine;
|
| class CRLSetFetcher;
|
| class ComponentUpdateService;
|
| class DownloadRequestLimiter;
|
| @@ -212,8 +213,16 @@
|
|
|
| virtual chrome::MediaFileSystemRegistry* media_file_system_registry() = 0;
|
|
|
| + virtual void PlatformSpecificCommandLineProcessing(
|
| + const CommandLine& command_line) = 0;
|
| +
|
| virtual bool created_local_state() const = 0;
|
|
|
| +#if defined(OS_WIN) && defined(USE_AURA)
|
| + // Invoked when the ASH metro viewer process on Windows 8 exits.
|
| + virtual void OnMetroViewerProcessTerminated() = 0;
|
| +#endif
|
| +
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(BrowserProcess);
|
| };
|
|
|