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

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: fix ios? 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..a227abd6c66a35343eaf0bffc4b1d7a53a11097e 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();
+ // Overridden from BrowserProcessPlatformPartBase:
+ 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.
« no previous file with comments | « chrome/browser/browser_process_platform_part.cc ('k') | chrome/browser/browser_process_platform_part_aurawin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698