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

Unified Diff: chrome/browser/browser_process_platform_part_aurawin.h

Issue 14698027: Move winaura specific methods and members from chrome/browser/browser_process.h to chrome/browser/b… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix includes in testing_browser_process_platform_part.h 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
new file mode 100644
index 0000000000000000000000000000000000000000..d0c457f14a8eaf6f61e6e03d776c5b248bfdb994
--- /dev/null
+++ b/chrome/browser/browser_process_platform_part_aurawin.h
@@ -0,0 +1,37 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_AURAWIN_H_
+#define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_AURAWIN_H_
+
+#include "base/basictypes.h"
+#include "base/memory/scoped_ptr.h"
+
+class CommandLine;
+class MetroViewerProcessHost;
+
+class BrowserProcessPlatformPart {
+ 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();
+
+ void OnMetroViewerProcessTerminated();
+
+ private:
+ // Hosts the channel for the Windows 8 metro viewer process which runs in
+ // the ASH environment.
+ scoped_ptr<MetroViewerProcessHost> metro_viewer_process_host_;
+
+ DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart);
+};
+
+#endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_AURAWIN_H_
« 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