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

Unified Diff: views/run_all_unittests.cc

Issue 8771006: views: Move the remaining file from views/ to ui/views/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « views/repeat_controller.cc ('k') | views/view_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/run_all_unittests.cc
diff --git a/views/run_all_unittests.cc b/views/run_all_unittests.cc
deleted file mode 100644
index e6752913cd1648ae81e64d753722a15b45d926df..0000000000000000000000000000000000000000
--- a/views/run_all_unittests.cc
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) 2011 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 "base/test/test_suite.h"
-#include "ui/base/resource/resource_bundle.h"
-#include "ui/base/ui_base_paths.h"
-#include "ui/gfx/compositor/test/compositor_test_support.h"
-#include "ui/gfx/test/gfx_test_utils.h"
-#include "ui/views/view.h"
-
-class ViewTestSuite : public base::TestSuite {
- public:
- ViewTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {}
-
- protected:
- virtual void Initialize() {
- base::TestSuite::Initialize();
-
- ui::RegisterPathProvider();
- ui::ResourceBundle::InitSharedInstance("en-US");
-
- ui::CompositorTestSupport::Initialize();
- ui::gfx_test_utils::SetupTestCompositor();
- }
-
- virtual void Shutdown() {
- ui::CompositorTestSupport::Terminate();
- }
-};
-
-int main(int argc, char** argv) {
- return ViewTestSuite(argc, argv).Run();
-}
« no previous file with comments | « views/repeat_controller.cc ('k') | views/view_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698