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

Side by Side Diff: components/mus/public/cpp/tests/window_unittest.cc

Issue 1544283002: Clean up header files. (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
« no previous file with comments | « components/drive/resource_metadata.cc ('k') | components/nacl/renderer/plugin/srpc_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/mus/public/cpp/window.h" 5 #include "components/mus/public/cpp/window.h"
6 6
7 #include <limits.h>
7 #include <stdint.h> 8 #include <stdint.h>
8 9
9 #include "base/logging.h" 10 #include "base/logging.h"
10 #include "base/macros.h" 11 #include "base/macros.h"
11 #include "base/strings/string_number_conversions.h" 12 #include "base/strings/string_number_conversions.h"
12 #include "base/strings/stringprintf.h" 13 #include "base/strings/stringprintf.h"
13 #include "components/mus/common/util.h" 14 #include "components/mus/common/util.h"
14 #include "components/mus/public/cpp/lib/window_private.h" 15 #include "components/mus/public/cpp/lib/window_private.h"
15 #include "components/mus/public/cpp/property_type_converters.h" 16 #include "components/mus/public/cpp/property_type_converters.h"
16 #include "components/mus/public/cpp/tests/test_window.h" 17 #include "components/mus/public/cpp/tests/test_window.h"
(...skipping 1108 matching lines...) Expand 10 before | Expand all | Expand 10 after
1125 scoped_ptr<TestWindow> window0(CreateTestWindow(1, parent.get())); 1126 scoped_ptr<TestWindow> window0(CreateTestWindow(1, parent.get()));
1126 scoped_ptr<TestWindow> window1(CreateTestWindow(2, parent.get())); 1127 scoped_ptr<TestWindow> window1(CreateTestWindow(2, parent.get()));
1127 1128
1128 TestWindow* window2 = CreateTestWindow(3, parent.get()); 1129 TestWindow* window2 = CreateTestWindow(3, parent.get());
1129 1130
1130 window0->AddTransientWindow(window2); 1131 window0->AddTransientWindow(window2);
1131 EXPECT_EQ("1 3 2", ChildWindowIDsAsString(parent.get())); 1132 EXPECT_EQ("1 3 2", ChildWindowIDsAsString(parent.get()));
1132 } 1133 }
1133 1134
1134 } // namespace mus 1135 } // namespace mus
OLDNEW
« no previous file with comments | « components/drive/resource_metadata.cc ('k') | components/nacl/renderer/plugin/srpc_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698