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

Unified Diff: ui/compositor/test/test_suite.cc

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/compositor/test/test_suite.h ('k') | ui/compositor/test/test_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/compositor/test/test_suite.cc
diff --git a/ui/compositor/test/test_suite.cc b/ui/compositor/test/test_suite.cc
deleted file mode 100644
index d98f52da63f85aa9866085db991bbecc3e4106dc..0000000000000000000000000000000000000000
--- a/ui/compositor/test/test_suite.cc
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright (c) 2012 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.
-
-#include "ui/compositor/test/test_suite.h"
-
-#include "base/command_line.h"
-#include "base/message_loop/message_loop.h"
-#include "ui/compositor/compositor.h"
-#include "ui/compositor/compositor_switches.h"
-#include "ui/gfx/gfx_paths.h"
-#include "ui/gl/gl_surface.h"
-
-#if defined(OS_WIN)
-#include "ui/gfx/win/dpi.h"
-#endif
-
-namespace ui {
-namespace test {
-
-CompositorTestSuite::CompositorTestSuite(int argc, char** argv)
- : TestSuite(argc, argv) {}
-
-CompositorTestSuite::~CompositorTestSuite() {}
-
-void CompositorTestSuite::Initialize() {
- base::TestSuite::Initialize();
- gfx::GLSurface::InitializeOneOffForTests();
-
- gfx::RegisterPathProvider();
-
-#if defined(OS_WIN)
- gfx::InitDeviceScaleFactor(1.0f);
-#endif
-
- message_loop_.reset(new base::MessageLoopForUI);
-}
-
-void CompositorTestSuite::Shutdown() {
- message_loop_.reset();
-
- base::TestSuite::Shutdown();
-}
-
-} // namespace test
-} // namespace ui
« no previous file with comments | « ui/compositor/test/test_suite.h ('k') | ui/compositor/test/test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698