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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_AURAWIN_H_
6 #define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_AURAWIN_H_
7
8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h"
10
11 class CommandLine;
12 class MetroViewerProcessHost;
13
14 class BrowserProcessPlatformPart {
15 public:
16 BrowserProcessPlatformPart();
17 virtual ~BrowserProcessPlatformPart();
18
19 // Called after creating the process singleton or when another chrome
20 // rendez-vous with this one.
21 virtual void PlatformSpecificCommandLineProcessing(
22 const CommandLine& command_line);
23
24 // Called from BrowserProcessImpl::StartTearDown().
25 virtual void StartTearDown();
26
27 void OnMetroViewerProcessTerminated();
28
29 private:
30 // Hosts the channel for the Windows 8 metro viewer process which runs in
31 // the ASH environment.
32 scoped_ptr<MetroViewerProcessHost> metro_viewer_process_host_;
33
34 DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart);
35 };
36
37 #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_AURAWIN_H_
OLDNEW
« 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