blob: a25095ef215f2b657c4d770e75bbd0035cd4d819 [file] [log] [blame]
// 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 ASH_TEST_TEST_METRO_VIEWER_PROCESS_HOST_H_
#define ASH_TEST_TEST_METRO_VIEWER_PROCESS_HOST_H_
#include "base/memory/scoped_ptr.h"
#include "win8/viewer/metro_viewer_process_host.h"
class AcceleratedSurface;
namespace ash {
namespace test {
class TestMetroViewerProcessHost : public win8::MetroViewerProcessHost {
public:
TestMetroViewerProcessHost(
const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner);
~TestMetroViewerProcessHost() override;
bool closed_unexpectedly() { return closed_unexpectedly_; }
// Forcibly terminate the viewer. Used on completion of tests to ensure that
// it's gone (quickly) so that we can start the next test immediately.
void TerminateViewer();
private:
// win8::MetroViewerProcessHost implementation
void OnChannelError() override;
void OnSetTargetSurface(gfx::NativeViewId target_surface,
float device_scale) override;
void OnOpenURL(const base::string16& url) override;
void OnHandleSearchRequest(const base::string16& search_string) override;
void OnWindowSizeChanged(uint32 width, uint32 height) override;
bool closed_unexpectedly_;
DISALLOW_COPY_AND_ASSIGN(TestMetroViewerProcessHost);
};
} // namespace test
} // namespace ash
#endif // ASH_TEST_TEST_METRO_VIEWER_PROCESS_HOST_H_