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

Side by Side Diff: ui/ozone/common/native_display_delegate_ozone.cc

Issue 1028563003: Load and apply a vcgt table from an ICC file to the internal display (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix ozone build Created 5 years, 7 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 | « ui/ozone/common/native_display_delegate_ozone.h ('k') | ui/ozone/platform/drm/gpu/drm_device.h » ('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 "ui/ozone/common/native_display_delegate_ozone.h" 5 #include "ui/ozone/common/native_display_delegate_ozone.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "ui/ozone/common/display_snapshot_proxy.h" 8 #include "ui/ozone/common/display_snapshot_proxy.h"
9 #include "ui/ozone/common/display_util.h" 9 #include "ui/ozone/common/display_util.h"
10 10
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 return std::vector<ui::ColorCalibrationProfile>(); 98 return std::vector<ui::ColorCalibrationProfile>();
99 } 99 }
100 100
101 bool NativeDisplayDelegateOzone::SetColorCalibrationProfile( 101 bool NativeDisplayDelegateOzone::SetColorCalibrationProfile(
102 const ui::DisplaySnapshot& output, 102 const ui::DisplaySnapshot& output,
103 ui::ColorCalibrationProfile new_profile) { 103 ui::ColorCalibrationProfile new_profile) {
104 NOTIMPLEMENTED(); 104 NOTIMPLEMENTED();
105 return false; 105 return false;
106 } 106 }
107 107
108 bool NativeDisplayDelegateOzone::SetGammaRamp(
109 const ui::DisplaySnapshot& output,
110 const std::vector<GammaRampRGBEntry>& lut) {
111 NOTIMPLEMENTED();
112 return false;
113 }
114
108 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) { 115 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) {
109 NOTIMPLEMENTED(); 116 NOTIMPLEMENTED();
110 } 117 }
111 118
112 void NativeDisplayDelegateOzone::RemoveObserver( 119 void NativeDisplayDelegateOzone::RemoveObserver(
113 NativeDisplayObserver* observer) { 120 NativeDisplayObserver* observer) {
114 NOTIMPLEMENTED(); 121 NOTIMPLEMENTED();
115 } 122 }
116 123
117 } // namespace ui 124 } // namespace ui
OLDNEW
« no previous file with comments | « ui/ozone/common/native_display_delegate_ozone.h ('k') | ui/ozone/platform/drm/gpu/drm_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698