| 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> |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 struct ColorCalibrationData { | 48 struct ColorCalibrationData { |
| 49 ColorCalibrationData(); | 49 ColorCalibrationData(); |
| 50 ~ColorCalibrationData(); | 50 ~ColorCalibrationData(); |
| 51 | 51 |
| 52 std::vector<ui::GammaRampRGBEntry> lut; | 52 std::vector<ui::GammaRampRGBEntry> lut; |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 private: | 55 private: |
| 56 void ApplyDisplayColorCalibration(int64_t display_id, int64_t product_id); | 56 void ApplyDisplayColorCalibration(int64_t display_id, int64_t product_id); |
| 57 void LoadCalibrationForDisplay(const ui::DisplaySnapshot* display); | 57 void LoadCalibrationForDisplay(const ui::DisplaySnapshot* display); |
| 58 void UpdateCalibrationData( | 58 void UpdateCalibrationData(int64_t display_id, |
| 59 int64_t display_id, | 59 int64_t product_id, |
| 60 int64_t product_id, | 60 scoped_ptr<ColorCalibrationData> data); |
| 61 scoped_ptr<DisplayColorManager::ColorCalibrationData> data, | |
| 62 bool success); | |
| 63 | 61 |
| 64 ui::DisplayConfigurator* configurator_; | 62 ui::DisplayConfigurator* configurator_; |
| 65 std::map<int64_t, ColorCalibrationData*> calibration_map_; | 63 std::map<int64_t, ColorCalibrationData*> calibration_map_; |
| 66 base::SequencedWorkerPool* blocking_pool_; | 64 base::SequencedWorkerPool* blocking_pool_; |
| 67 | 65 |
| 68 DISALLOW_COPY_AND_ASSIGN(DisplayColorManager); | 66 DISALLOW_COPY_AND_ASSIGN(DisplayColorManager); |
| 69 }; | 67 }; |
| 70 | 68 |
| 71 } // namespace ash | 69 } // namespace ash |
| 72 | 70 |
| 73 #endif // ASH_DISPLAY_DISPLAY_COLOR_MANAGER_CHROMEOS_H_ | 71 #endif // ASH_DISPLAY_DISPLAY_COLOR_MANAGER_CHROMEOS_H_ |
| OLD | NEW |