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

Side by Side Diff: chrome/browser/metro_viewer/chrome_metro_viewer_process_host_aurawin.h

Issue 14629025: Create MetroViewerProcessHost as a common base for TestMetroViewerProcessHost and ChromeMetroViewer… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge before dcommit 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 2012 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_METRO_VIEWER_CHROME_METRO_VIEWER_PROCESS_HOST_AURAWIN_H_
6 #define CHROME_BROWSER_METRO_VIEWER_CHROME_METRO_VIEWER_PROCESS_HOST_AURAWIN_H_
7
8 #include <string>
9
10 #include "win8/viewer/metro_viewer_process_host.h"
11
12 class ChromeMetroViewerProcessHost : public win8::MetroViewerProcessHost {
13 public:
14 explicit ChromeMetroViewerProcessHost(const std::string& ipc_channel_name);
15
16 private:
17 // win8::MetroViewerProcessHost implementation
18 virtual void OnChannelError() OVERRIDE;
19 virtual void OnSetTargetSurface(gfx::NativeViewId target_surface) OVERRIDE;
20
21 DISALLOW_COPY_AND_ASSIGN(ChromeMetroViewerProcessHost);
22 };
23
24 #endif // CHROME_BROWSER_METRO_VIEWER_CHROME_METRO_VIEWER_PROCESS_HOST_AURAWIN_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698