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

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

Issue 1586843002: Remove remote tree host and some related input and metro_driver code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@metro-mode-3
Patch Set: remove ash_unittests from being run Created 4 years, 11 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
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 <stdint.h>
9
10 #include "base/macros.h"
11 #include "win8/viewer/metro_viewer_process_host.h"
12
13 namespace base {
14 class FilePath;
15 }
16
17 class ChromeMetroViewerProcessHost : public win8::MetroViewerProcessHost {
18 public:
19 ChromeMetroViewerProcessHost();
20 ~ChromeMetroViewerProcessHost() override;
21
22 private:
23 // win8::MetroViewerProcessHost implementation
24 void OnChannelError() override;
25
26 // IPC::Listener implementation
27 void OnChannelConnected(int32_t peer_pid) override;
28 void OnSetTargetSurface(gfx::NativeViewId target_surface,
29 float device_scale) override;
30 void OnOpenURL(const base::string16& url) override;
31 void OnHandleSearchRequest(const base::string16& search_string) override;
32 void OnWindowSizeChanged(uint32_t width, uint32_t height) override;
33
34 DISALLOW_COPY_AND_ASSIGN(ChromeMetroViewerProcessHost);
35 };
36
37 #endif // CHROME_BROWSER_METRO_VIEWER_CHROME_METRO_VIEWER_PROCESS_HOST_AURAWIN_ H_
OLDNEW
« no previous file with comments | « chrome/browser/metro_viewer/OWNERS ('k') | chrome/browser/metro_viewer/chrome_metro_viewer_process_host_aurawin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698