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

Unified Diff: chrome/browser/browser_process_platform_part_aurawin.h

Issue 14951007: Refactor BrowserProcessPlatformPart. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use BrowserProcessPlatformPartBase instead. Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/browser_process_platform_part_aurawin.h
diff --git a/chrome/browser/browser_process_platform_part_aurawin.h b/chrome/browser/browser_process_platform_part_aurawin.h
index d0c457f14a8eaf6f61e6e03d776c5b248bfdb994..b5bc6e9147e38b2705c385006e0d358daeaecdaa 100644
--- a/chrome/browser/browser_process_platform_part_aurawin.h
+++ b/chrome/browser/browser_process_platform_part_aurawin.h
@@ -7,25 +7,22 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
+#include "chrome/browser/browser_process_platform_part_base.h"
-class CommandLine;
class MetroViewerProcessHost;
-class BrowserProcessPlatformPart {
+class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase {
public:
BrowserProcessPlatformPart();
virtual ~BrowserProcessPlatformPart();
- // Called after creating the process singleton or when another chrome
- // rendez-vous with this one.
- virtual void PlatformSpecificCommandLineProcessing(
- const CommandLine& command_line);
-
- // Called from BrowserProcessImpl::StartTearDown().
- virtual void StartTearDown();
-
+ // Invoked when the ASH metro viewer process on Windows 8 exits.
void OnMetroViewerProcessTerminated();
+ // BrowserProcessPlatformPartBase methods:
+ virtual void PlatformSpecificCommandLineProcessing(
+ const CommandLine& command_line) OVERRIDE;
+
private:
// Hosts the channel for the Windows 8 metro viewer process which runs in
// the ASH environment.

Powered by Google App Engine
This is Rietveld 408576698