| OLD | NEW | 
|    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 "ui/display/test/display_manager_test_api.h" |    5 #include "ui/display/test/display_manager_test_api.h" | 
|    6  |    6  | 
|    7 #include <cstdarg> |    7 #include <cstdarg> | 
|    8 #include <vector> |    8 #include <vector> | 
|    9  |    9  | 
|   10 #include "base/strings/string_split.h" |   10 #include "base/strings/string_split.h" | 
|   11 #include "ui/display/display.h" |   11 #include "ui/display/display.h" | 
|   12 #include "ui/display/manager/display_layout_builder.h" |   12 #include "ui/display/display_layout_builder.h" | 
|   13 #include "ui/display/manager/display_manager.h" |   13 #include "ui/display/manager/display_manager.h" | 
|   14 #include "ui/display/manager/display_manager_utilities.h" |   14 #include "ui/display/manager/display_manager_utilities.h" | 
|   15 #include "ui/display/manager/managed_display_info.h" |   15 #include "ui/display/manager/managed_display_info.h" | 
|   16 #include "ui/display/screen.h" |   16 #include "ui/display/screen.h" | 
|   17  |   17  | 
|   18 namespace display { |   18 namespace display { | 
|   19 namespace test { |   19 namespace test { | 
|   20 namespace { |   20 namespace { | 
|   21  |   21  | 
|   22 DisplayInfoList CreateDisplayInfoListFromString( |   22 DisplayInfoList CreateDisplayInfoListFromString( | 
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  199   for (size_t i = 0; i < count; i++) { |  199   for (size_t i = 0; i < count; i++) { | 
|  200     int64_t id = va_arg(args, int64_t); |  200     int64_t id = va_arg(args, int64_t); | 
|  201     list.push_back(id); |  201     list.push_back(id); | 
|  202   } |  202   } | 
|  203   SortDisplayIdList(&list); |  203   SortDisplayIdList(&list); | 
|  204   return list; |  204   return list; | 
|  205 } |  205 } | 
|  206  |  206  | 
|  207 }  // namespace test |  207 }  // namespace test | 
|  208 }  // namespace display |  208 }  // namespace display | 
| OLD | NEW |