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

Unified Diff: ui/ozone/platform/drm/gpu/drm_thread_message_proxy.cc

Issue 2613493002: Fix namespace for src/ui/display/. (Closed)
Patch Set: Rebase. Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_thread_message_proxy.h ('k') | ui/ozone/platform/drm/gpu/mock_drm_device.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/drm/gpu/drm_thread_message_proxy.cc
diff --git a/ui/ozone/platform/drm/gpu/drm_thread_message_proxy.cc b/ui/ozone/platform/drm/gpu/drm_thread_message_proxy.cc
index ef9ff26c3ab9f35a68ddcbf3c7ecddd0eb117bc3..fe1211dafa1f2c66917ad7f1b11e81b7e9de9e3d 100644
--- a/ui/ozone/platform/drm/gpu/drm_thread_message_proxy.cc
+++ b/ui/ozone/platform/drm/gpu/drm_thread_message_proxy.cc
@@ -202,7 +202,7 @@ void DrmThreadMessageProxy::OnGetHDCPState(int64_t display_id) {
}
void DrmThreadMessageProxy::OnSetHDCPState(int64_t display_id,
- HDCPState state) {
+ display::HDCPState state) {
DCHECK(drm_thread_->IsRunning());
auto callback = base::Bind(&DrmThreadMessageProxy::OnSetHDCPStateCallback,
weak_ptr_factory_.GetWeakPtr());
@@ -214,8 +214,8 @@ void DrmThreadMessageProxy::OnSetHDCPState(int64_t display_id,
void DrmThreadMessageProxy::OnSetColorCorrection(
int64_t id,
- const std::vector<GammaRampRGBEntry>& degamma_lut,
- const std::vector<GammaRampRGBEntry>& gamma_lut,
+ const std::vector<display::GammaRampRGBEntry>& degamma_lut,
+ const std::vector<display::GammaRampRGBEntry>& gamma_lut,
const std::vector<float>& correction_matrix) {
DCHECK(drm_thread_->IsRunning());
drm_thread_->task_runner()->PostTask(
@@ -255,9 +255,10 @@ void DrmThreadMessageProxy::OnRelinquishDisplayControlCallback(
sender_->Send(new OzoneHostMsg_DisplayControlRelinquished(success));
}
-void DrmThreadMessageProxy::OnGetHDCPStateCallback(int64_t display_id,
- bool success,
- HDCPState state) const {
+void DrmThreadMessageProxy::OnGetHDCPStateCallback(
+ int64_t display_id,
+ bool success,
+ display::HDCPState state) const {
sender_->Send(new OzoneHostMsg_HDCPStateReceived(display_id, success, state));
}
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_thread_message_proxy.h ('k') | ui/ozone/platform/drm/gpu/mock_drm_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698