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

Side by Side Diff: ui/views/test/views_test_base.h

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 #ifndef UI_VIEWS_TEST_VIEWS_TEST_BASE_H_ 5 #ifndef UI_VIEWS_TEST_VIEWS_TEST_BASE_H_
6 #define UI_VIEWS_TEST_VIEWS_TEST_BASE_H_ 6 #define UI_VIEWS_TEST_VIEWS_TEST_BASE_H_
7 7
8 #include "base/macros.h"
8 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
9 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "build/build_config.h"
10 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
11 #include "testing/platform_test.h" 13 #include "testing/platform_test.h"
12 #include "ui/views/test/scoped_views_test_helper.h" 14 #include "ui/views/test/scoped_views_test_helper.h"
13 #include "ui/views/test/test_views_delegate.h" 15 #include "ui/views/test/test_views_delegate.h"
14 #include "ui/views/widget/widget.h" 16 #include "ui/views/widget/widget.h"
15 17
16 #if defined(OS_WIN) 18 #if defined(OS_WIN)
17 #include "ui/base/win/scoped_ole_initializer.h" 19 #include "ui/base/win/scoped_ole_initializer.h"
18 #endif 20 #endif
19 21
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 #if defined(OS_WIN) 64 #if defined(OS_WIN)
63 ui::ScopedOleInitializer ole_initializer_; 65 ui::ScopedOleInitializer ole_initializer_;
64 #endif 66 #endif
65 67
66 DISALLOW_COPY_AND_ASSIGN(ViewsTestBase); 68 DISALLOW_COPY_AND_ASSIGN(ViewsTestBase);
67 }; 69 };
68 70
69 } // namespace views 71 } // namespace views
70 72
71 #endif // UI_VIEWS_TEST_VIEWS_TEST_BASE_H_ 73 #endif // UI_VIEWS_TEST_VIEWS_TEST_BASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698