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

Side by Side Diff: ui/views/run_all_unittests.cc

Issue 1543173002: Switch to standard integer types in ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/basictypes.h"
6 #include "base/bind.h" 5 #include "base/bind.h"
7 #include "base/compiler_specific.h" 6 #include "base/compiler_specific.h"
7 #include "base/macros.h"
8 #include "base/path_service.h" 8 #include "base/path_service.h"
9 #include "base/test/launcher/unit_test_launcher.h" 9 #include "base/test/launcher/unit_test_launcher.h"
10 #include "base/test/test_suite.h" 10 #include "base/test/test_suite.h"
11 #include "testing/gtest/include/gtest/gtest.h" 11 #include "testing/gtest/include/gtest/gtest.h"
12 #include "ui/base/resource/resource_bundle.h" 12 #include "ui/base/resource/resource_bundle.h"
13 #include "ui/base/ui_base_paths.h" 13 #include "ui/base/ui_base_paths.h"
14 #include "ui/gl/test/gl_surface_test_support.h" 14 #include "ui/gl/test/gl_surface_test_support.h"
15 15
16 #if defined(USE_AURA) 16 #if defined(USE_AURA)
17 #include "ui/aura/env.h" 17 #include "ui/aura/env.h"
(...skipping 29 matching lines...) Expand all
47 DISALLOW_COPY_AND_ASSIGN(ViewTestSuite); 47 DISALLOW_COPY_AND_ASSIGN(ViewTestSuite);
48 }; 48 };
49 49
50 int main(int argc, char** argv) { 50 int main(int argc, char** argv) {
51 ViewTestSuite test_suite(argc, argv); 51 ViewTestSuite test_suite(argc, argv);
52 52
53 return base::LaunchUnitTests( 53 return base::LaunchUnitTests(
54 argc, argv, base::Bind(&ViewTestSuite::Run, 54 argc, argv, base::Bind(&ViewTestSuite::Run,
55 base::Unretained(&test_suite))); 55 base::Unretained(&test_suite)));
56 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698