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

Unified Diff: mash/wm/test/wm_test_base.h

Issue 2029883002: Moves mash/wm into ash/mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_static_assert
Patch Set: move comment Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mash/wm/test/DEPS ('k') | mash/wm/test/wm_test_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/wm/test/wm_test_base.h
diff --git a/mash/wm/test/wm_test_base.h b/mash/wm/test/wm_test_base.h
deleted file mode 100644
index fb79e965ae6e1c32c9626612f9b190cfda85e9a3..0000000000000000000000000000000000000000
--- a/mash/wm/test/wm_test_base.h
+++ /dev/null
@@ -1,85 +0,0 @@
-// Copyright 2016 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 MASH_WM_TEST_WM_TEST_BASE_H_
-#define MASH_WM_TEST_WM_TEST_BASE_H_
-
-#include <memory>
-#include <string>
-
-#include "base/macros.h"
-#include "testing/gtest/include/gtest/gtest.h"
-#include "ui/wm/public/window_types.h"
-
-namespace display {
-class Display;
-}
-
-namespace gfx {
-class Rect;
-}
-
-namespace mus {
-class Window;
-}
-
-namespace mash {
-namespace wm {
-
-class RootWindowController;
-class WmTestHelper;
-
-// Base class for window manager tests that want to configure
-// WindowTreeClient without a client to mus.
-class WmTestBase : public testing::Test {
- public:
- WmTestBase();
- ~WmTestBase() override;
-
- // TODO(sky): temporary until http://crbug.com/611563 is fixed.
- bool SupportsMultipleDisplays() const;
-
- // Update the display configuration as given in |display_spec|.
- // See ash::test::DisplayManagerTestApi::UpdateDisplay for more details.
- void UpdateDisplay(const std::string& display_spec);
-
- mus::Window* GetPrimaryRootWindow();
- mus::Window* GetSecondaryRootWindow();
-
- display::Display GetPrimaryDisplay();
- display::Display GetSecondaryDisplay();
-
- // Creates a top level window visible window in the appropriate container.
- // NOTE: you can explicitly destroy the returned value if necessary, but it
- // will also be automatically destroyed when the WindowTreeClient is
- // destroyed.
- mus::Window* CreateTestWindow(const gfx::Rect& bounds);
- mus::Window* CreateTestWindow(const gfx::Rect& bounds,
- ui::wm::WindowType window_type);
-
- // Creates a window parented to |parent|. The returned window is visible.
- mus::Window* CreateChildTestWindow(mus::Window* parent,
- const gfx::Rect& bounds);
-
- protected:
- // testing::Test:
- void SetUp() override;
- void TearDown() override;
-
- private:
- // Returns the RootWindowControllers ordered by display id (which we assume
- // correlates with creation order).
- std::vector<RootWindowController*> GetRootsOrderedByDisplayId();
-
- bool setup_called_ = false;
- bool teardown_called_ = false;
- std::unique_ptr<WmTestHelper> test_helper_;
-
- DISALLOW_COPY_AND_ASSIGN(WmTestBase);
-};
-
-} // namespace wm
-} // namespace mash
-
-#endif // MASH_WM_TEST_WM_TEST_BASE_H_
« no previous file with comments | « mash/wm/test/DEPS ('k') | mash/wm/test/wm_test_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698