Update JNI generator for javap version 1.8.
[chromium-blink-merge.git] / ash / test / test_metro_viewer_process_host.h
blobbb39351533fbf1aaca802abaf254458fffb78369
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.
5 #ifndef ASH_TEST_TEST_METRO_VIEWER_PROCESS_HOST_H_
6 #define ASH_TEST_TEST_METRO_VIEWER_PROCESS_HOST_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "win8/viewer/metro_viewer_process_host.h"
11 class AcceleratedSurface;
13 namespace ash {
14 namespace test {
16 class TestMetroViewerProcessHost : public win8::MetroViewerProcessHost {
17 public:
18 TestMetroViewerProcessHost(
19 const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner);
20 virtual ~TestMetroViewerProcessHost();
22 bool closed_unexpectedly() { return closed_unexpectedly_; }
24 // Forcibly terminate the viewer. Used on completion of tests to ensure that
25 // it's gone (quickly) so that we can start the next test immediately.
26 void TerminateViewer();
28 private:
29 // win8::MetroViewerProcessHost implementation
30 virtual void OnChannelError() override;
31 virtual void OnSetTargetSurface(gfx::NativeViewId target_surface,
32 float device_scale) override;
33 virtual void OnOpenURL(const base::string16& url) override;
34 virtual void OnHandleSearchRequest(
35 const base::string16& search_string) override;
36 virtual void OnWindowSizeChanged(uint32 width, uint32 height) override;
38 bool closed_unexpectedly_;
40 DISALLOW_COPY_AND_ASSIGN(TestMetroViewerProcessHost);
44 } // namespace test
45 } // namespace ash
47 #endif // ASH_TEST_TEST_METRO_VIEWER_PROCESS_HOST_H_