| OLD | NEW | 
|    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 "ui/display/chromeos/test/action_logger_util.h" |    5 #include "ui/display/manager/chromeos/test/action_logger_util.h" | 
|    6  |    6  | 
|    7 #include <stddef.h> |    7 #include <stddef.h> | 
|    8  |    8  | 
|    9 #include "base/format_macros.h" |    9 #include "base/format_macros.h" | 
|   10 #include "base/logging.h" |   10 #include "base/logging.h" | 
|   11 #include "base/strings/stringprintf.h" |   11 #include "base/strings/stringprintf.h" | 
|   12 #include "ui/display/types/display_mode.h" |   12 #include "ui/display/types/display_mode.h" | 
|   13 #include "ui/display/types/display_snapshot.h" |   13 #include "ui/display/types/display_snapshot.h" | 
|   14 #include "ui/display/types/gamma_ramp_rgb_entry.h" |   14 #include "ui/display/types/gamma_ramp_rgb_entry.h" | 
|   15 #include "ui/display/types/native_display_delegate.h" |   15 #include "ui/display/types/native_display_delegate.h" | 
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   95       actions += ","; |   95       actions += ","; | 
|   96     actions += action; |   96     actions += action; | 
|   97     action = va_arg(arg_list, const char*); |   97     action = va_arg(arg_list, const char*); | 
|   98   } |   98   } | 
|   99   va_end(arg_list); |   99   va_end(arg_list); | 
|  100   return actions; |  100   return actions; | 
|  101 } |  101 } | 
|  102  |  102  | 
|  103 }  // namespace test |  103 }  // namespace test | 
|  104 }  // namespace ui |  104 }  // namespace ui | 
| OLD | NEW |