blob: cc1ec29453128c06e6b8efdef69187dd184ca708 [file] [log] [blame]
// Copyright 2013 The Flutter 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 FLUTTER_SHELL_PLATFORM_WINDOWS_TESTING_WIN32_FLUTTER_WINDOW_TEST_H_
#define FLUTTER_SHELL_PLATFORM_WINDOWS_TESTING_WIN32_FLUTTER_WINDOW_TEST_H_
#include "flutter/shell/platform/windows/flutter_window.h"
namespace flutter {
namespace testing {
/// Test class for FlutterWindow.
class FlutterWindowTest : public FlutterWindow {
public:
FlutterWindowTest(int width, int height);
virtual ~FlutterWindowTest();
// Prevent copying.
FlutterWindowTest(FlutterWindowTest const&) = delete;
FlutterWindowTest& operator=(FlutterWindowTest const&) = delete;
};
} // namespace testing
} // namespace flutter
#endif // FLUTTER_SHELL_PLATFORM_WINDOWS_TESTING_WIN32_FLUTTER_WINDOW_TEST_H_