| OLD | NEW | 
|   1 // Copyright 2015 The Chromium Authors. All rights reserved. |   1 // Copyright 2015 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 ASH_DISPLAY_DISPLAY_COLOR_MANAGER_CHROMEOS_H_ |   5 #ifndef ASH_DISPLAY_DISPLAY_COLOR_MANAGER_CHROMEOS_H_ | 
|   6 #define ASH_DISPLAY_DISPLAY_COLOR_MANAGER_CHROMEOS_H_ |   6 #define ASH_DISPLAY_DISPLAY_COLOR_MANAGER_CHROMEOS_H_ | 
|   7  |   7  | 
|   8 #include <stdint.h> |   8 #include <stdint.h> | 
|   9  |   9  | 
|  10 #include <map> |  10 #include <map> | 
|  11 #include <memory> |  11 #include <memory> | 
|  12 #include <vector> |  12 #include <vector> | 
|  13  |  13  | 
|  14 #include "ash/ash_export.h" |  14 #include "ash/ash_export.h" | 
|  15 #include "base/files/file_path.h" |  15 #include "base/files/file_path.h" | 
|  16 #include "base/macros.h" |  16 #include "base/macros.h" | 
|  17 #include "base/memory/weak_ptr.h" |  17 #include "base/memory/weak_ptr.h" | 
|  18 #include "base/threading/thread_checker.h" |  18 #include "base/threading/thread_checker.h" | 
|  19 #include "ui/display/chromeos/display_configurator.h" |  19 #include "ui/display/manager/chromeos/display_configurator.h" | 
|  20 #include "ui/display/types/display_constants.h" |  20 #include "ui/display/types/display_constants.h" | 
|  21  |  21  | 
|  22 namespace base { |  22 namespace base { | 
|  23 class SequencedWorkerPool; |  23 class SequencedWorkerPool; | 
|  24 } |  24 } | 
|  25  |  25  | 
|  26 namespace ui { |  26 namespace ui { | 
|  27 class DisplaySnapshot; |  27 class DisplaySnapshot; | 
|  28 struct GammaRampRGBEntry; |  28 struct GammaRampRGBEntry; | 
|  29 }  // namespace ui |  29 }  // namespace ui | 
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  78  |  78  | 
|  79   // Factory for callbacks. |  79   // Factory for callbacks. | 
|  80   base::WeakPtrFactory<DisplayColorManager> weak_ptr_factory_; |  80   base::WeakPtrFactory<DisplayColorManager> weak_ptr_factory_; | 
|  81  |  81  | 
|  82   DISALLOW_COPY_AND_ASSIGN(DisplayColorManager); |  82   DISALLOW_COPY_AND_ASSIGN(DisplayColorManager); | 
|  83 }; |  83 }; | 
|  84  |  84  | 
|  85 }  // namespace ash |  85 }  // namespace ash | 
|  86  |  86  | 
|  87 #endif  // ASH_DISPLAY_DISPLAY_COLOR_MANAGER_CHROMEOS_H_ |  87 #endif  // ASH_DISPLAY_DISPLAY_COLOR_MANAGER_CHROMEOS_H_ | 
| OLD | NEW |