Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chrome/browser/chromeos/display/output_protection_delegate.h" | 5 #include "chrome/browser/chromeos/display/output_protection_delegate.h" |
| 6 | 6 |
| 7 #include "ash/shell.h" | 7 #include "chrome/browser/chromeos/display/output_protection_controller_ash.h" |
| 8 #include "build/build_config.h" | 8 #include "chrome/browser/chromeos/display/output_protection_controller_mus.h" |
| 9 #include "content/public/browser/browser_thread.h" | 9 #include "content/public/browser/browser_thread.h" |
| 10 #include "content/public/browser/render_frame_host.h" | 10 #include "content/public/browser/render_frame_host.h" |
| 11 #include "content/public/browser/web_contents.h" | 11 #include "services/service_manager/runner/common/client_util.h" |
| 12 #include "ui/display/display.h" | 12 #include "ui/display/display.h" |
| 13 #include "ui/display/screen.h" | 13 #include "ui/display/screen.h" |
| 14 #include "ui/display/types/display_constants.h" | |
| 14 | 15 |
| 15 namespace chromeos { | 16 namespace chromeos { |
| 16 | 17 |
| 17 namespace { | 18 namespace { |
| 18 | 19 |
| 20 bool IsRunningInMash() { | |
| 21 return service_manager::ServiceManagerIsRemote(); | |
| 22 } | |
| 23 | |
| 19 bool GetCurrentDisplayId(content::RenderFrameHost* rfh, int64_t* display_id) { | 24 bool GetCurrentDisplayId(content::RenderFrameHost* rfh, int64_t* display_id) { |
| 20 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | 25 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); |
| 21 DCHECK(rfh); | 26 DCHECK(rfh); |
| 22 DCHECK(display_id); | 27 DCHECK(display_id); |
| 23 | 28 |
| 24 display::Screen* screen = display::Screen::GetScreen(); | 29 display::Screen* screen = display::Screen::GetScreen(); |
| 25 if (!screen) | 30 if (!screen) |
| 26 return false; | 31 return false; |
| 27 display::Display display = | 32 display::Display display = |
| 28 screen->GetDisplayNearestWindow(rfh->GetNativeView()); | 33 screen->GetDisplayNearestWindow(rfh->GetNativeView()); |
| 29 *display_id = display.id(); | 34 *display_id = display.id(); |
| 30 return true; | 35 return true; |
| 31 } | 36 } |
| 32 | 37 |
| 33 void DoNothing(bool status) { | 38 void DoNothing(bool status) { |
| 34 } | 39 } |
| 35 | 40 |
| 36 } // namespace | 41 } // namespace |
| 37 | 42 |
| 43 OutputProtectionDelegate::Controller::Controller() {} | |
| 44 | |
| 45 OutputProtectionDelegate::Controller::~Controller() {} | |
| 46 | |
| 38 OutputProtectionDelegate::OutputProtectionDelegate(int render_process_id, | 47 OutputProtectionDelegate::OutputProtectionDelegate(int render_process_id, |
| 39 int render_frame_id) | 48 int render_frame_id) |
| 40 : render_process_id_(render_process_id), | 49 : render_process_id_(render_process_id), |
| 41 render_frame_id_(render_frame_id), | 50 render_frame_id_(render_frame_id), |
| 42 window_(nullptr), | 51 window_(nullptr), |
| 43 client_id_(display::DisplayConfigurator::kInvalidClientId), | 52 display_id_(display::kInvalidDisplayId), |
| 44 display_id_(0), | |
| 45 weak_ptr_factory_(this) { | 53 weak_ptr_factory_(this) { |
| 46 // This can be constructed on IO or UI thread. | 54 // This can be constructed on IO or UI thread. |
| 47 } | 55 } |
| 48 | 56 |
| 49 OutputProtectionDelegate::~OutputProtectionDelegate() { | 57 OutputProtectionDelegate::~OutputProtectionDelegate() { |
| 50 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | 58 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); |
| 51 | |
| 52 display::DisplayConfigurator* configurator = | |
| 53 ash::Shell::GetInstance()->display_configurator(); | |
| 54 configurator->UnregisterContentProtectionClient(client_id_); | |
| 55 | |
| 56 if (window_) | 59 if (window_) |
| 57 window_->RemoveObserver(this); | 60 window_->RemoveObserver(this); |
| 58 } | 61 } |
| 59 | 62 |
| 60 display::DisplayConfigurator::ContentProtectionClientId | |
| 61 OutputProtectionDelegate::GetClientId() { | |
| 62 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | |
| 63 if (client_id_ == display::DisplayConfigurator::kInvalidClientId) { | |
| 64 content::RenderFrameHost* rfh = | |
| 65 content::RenderFrameHost::FromID(render_process_id_, render_frame_id_); | |
| 66 if (!rfh || !GetCurrentDisplayId(rfh, &display_id_)) | |
| 67 return display::DisplayConfigurator::kInvalidClientId; | |
| 68 | |
| 69 aura::Window* window = rfh->GetNativeView(); | |
| 70 if (!window) | |
| 71 return display::DisplayConfigurator::kInvalidClientId; | |
| 72 | |
| 73 display::DisplayConfigurator* configurator = | |
| 74 ash::Shell::GetInstance()->display_configurator(); | |
| 75 client_id_ = configurator->RegisterContentProtectionClient(); | |
| 76 | |
| 77 if (client_id_ != display::DisplayConfigurator::kInvalidClientId) { | |
| 78 window->AddObserver(this); | |
| 79 window_ = window; | |
| 80 } | |
| 81 } | |
| 82 return client_id_; | |
| 83 } | |
| 84 | |
| 85 void OutputProtectionDelegate::QueryStatus( | 63 void OutputProtectionDelegate::QueryStatus( |
| 86 const QueryStatusCallback& callback) { | 64 const QueryStatusCallback& callback) { |
| 87 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | 65 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); |
| 88 | 66 |
| 67 if (!InitializeControllerIfNecessary()) { | |
| 68 callback.Run(false, 0, 0); | |
| 69 return; | |
| 70 } | |
| 71 | |
| 72 controller_->QueryStatus(display_id_, callback); | |
| 73 } | |
| 74 | |
| 75 void OutputProtectionDelegate::SetProtection( | |
| 76 uint32_t desired_method_mask, | |
| 77 const SetProtectionCallback& callback) { | |
| 78 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | |
| 79 | |
| 80 if (!InitializeControllerIfNecessary()) { | |
| 81 callback.Run(false); | |
| 82 return; | |
| 83 } | |
| 84 controller_->SetProtection(display_id_, desired_method_mask, callback); | |
| 85 desired_method_mask_ = desired_method_mask; | |
| 86 } | |
| 87 | |
| 88 bool OutputProtectionDelegate::InitializeControllerIfNecessary() { | |
| 89 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | |
| 90 | |
| 91 if (controller_) | |
| 92 return true; | |
| 93 | |
| 89 content::RenderFrameHost* rfh = | 94 content::RenderFrameHost* rfh = |
| 90 content::RenderFrameHost::FromID(render_process_id_, render_frame_id_); | 95 content::RenderFrameHost::FromID(render_process_id_, render_frame_id_); |
| 91 if (!rfh) { | 96 if (!rfh) { |
| 92 LOG(WARNING) << "RenderFrameHost is not alive."; | 97 LOG(WARNING) << "RenderFrameHost is not alive."; |
|
dcheng
2017/02/15 06:26:51
Nit: DLOG?
Peng
2017/02/15 16:15:33
Done.
| |
| 93 callback.Run(false, 0, 0); | 98 return false; |
| 94 return; | |
| 95 } | 99 } |
| 96 | 100 |
| 97 display::DisplayConfigurator* configurator = | 101 int64_t display_id = display::kInvalidDisplayId; |
| 98 ash::Shell::GetInstance()->display_configurator(); | 102 if (!GetCurrentDisplayId(rfh, &display_id)) |
| 99 configurator->QueryContentProtectionStatus( | 103 return false; |
| 100 GetClientId(), display_id_, | |
| 101 base::Bind(&OutputProtectionDelegate::QueryStatusComplete, | |
| 102 weak_ptr_factory_.GetWeakPtr(), callback)); | |
| 103 } | |
| 104 | 104 |
| 105 void OutputProtectionDelegate::EnableProtection( | 105 aura::Window* window = rfh->GetNativeView(); |
| 106 uint32_t desired_method_mask, | 106 if (!window) |
| 107 const EnableProtectionCallback& callback) { | 107 return false; |
| 108 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | |
| 109 | 108 |
| 110 display::DisplayConfigurator* configurator = | 109 if (IsRunningInMash()) |
| 111 ash::Shell::GetInstance()->display_configurator(); | 110 controller_ = base::MakeUnique<OutputProtectionControllerMus>(); |
| 112 configurator->EnableContentProtection( | 111 else |
| 113 GetClientId(), display_id_, desired_method_mask, | 112 controller_ = base::MakeUnique<OutputProtectionControllerAsh>(); |
| 114 base::Bind(&OutputProtectionDelegate::EnableProtectionComplete, | |
| 115 weak_ptr_factory_.GetWeakPtr(), callback)); | |
| 116 desired_method_mask_ = desired_method_mask; | |
| 117 } | |
| 118 | 113 |
| 119 void OutputProtectionDelegate::QueryStatusComplete( | 114 display_id_ = display_id; |
| 120 const QueryStatusCallback& callback, | 115 window_ = window; |
| 121 const display::DisplayConfigurator::QueryProtectionResponse& response) { | 116 window_->AddObserver(this); |
| 122 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | 117 return true; |
| 123 | |
| 124 content::RenderFrameHost* rfh = | |
| 125 content::RenderFrameHost::FromID(render_process_id_, render_frame_id_); | |
| 126 // TODO(xjz): Investigate whether this check (and the other one above) should | |
| 127 // be removed. | |
| 128 if (!rfh) { | |
| 129 LOG(WARNING) << "RenderFrameHost is not alive."; | |
| 130 callback.Run(false, 0, 0); | |
| 131 return; | |
| 132 } | |
| 133 | |
| 134 callback.Run(response.success, response.link_mask, response.protection_mask); | |
| 135 } | |
| 136 | |
| 137 void OutputProtectionDelegate::EnableProtectionComplete( | |
| 138 const EnableProtectionCallback& callback, | |
| 139 bool success) { | |
| 140 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | |
| 141 | |
| 142 callback.Run(success); | |
| 143 } | 118 } |
| 144 | 119 |
| 145 void OutputProtectionDelegate::OnWindowHierarchyChanged( | 120 void OutputProtectionDelegate::OnWindowHierarchyChanged( |
| 146 const aura::WindowObserver::HierarchyChangeParams& params) { | 121 const aura::WindowObserver::HierarchyChangeParams& params) { |
| 147 content::RenderFrameHost* rfh = | 122 content::RenderFrameHost* rfh = |
| 148 content::RenderFrameHost::FromID(render_process_id_, render_frame_id_); | 123 content::RenderFrameHost::FromID(render_process_id_, render_frame_id_); |
| 149 if (!rfh) { | 124 if (!rfh) { |
| 150 LOG(WARNING) << "RenderFrameHost is not alive."; | 125 LOG(WARNING) << "RenderFrameHost is not alive."; |
| 151 return; | 126 return; |
| 152 } | 127 } |
| 153 | 128 |
| 154 int64_t new_display_id = 0; | 129 int64_t new_display_id = display::kInvalidDisplayId; |
| 155 if (!GetCurrentDisplayId(rfh, &new_display_id)) | 130 if (!GetCurrentDisplayId(rfh, &new_display_id)) |
| 156 return; | 131 return; |
| 132 | |
| 157 if (display_id_ == new_display_id) | 133 if (display_id_ == new_display_id) |
| 158 return; | 134 return; |
| 159 | 135 |
| 160 if (desired_method_mask_ != display::CONTENT_PROTECTION_METHOD_NONE) { | 136 if (desired_method_mask_ != display::CONTENT_PROTECTION_METHOD_NONE) { |
| 161 // Display changed and should enable output protections on new display. | 137 DCHECK(controller_); |
| 162 display::DisplayConfigurator* configurator = | 138 controller_->SetProtection(new_display_id, desired_method_mask_, |
| 163 ash::Shell::GetInstance()->display_configurator(); | 139 base::Bind(&DoNothing)); |
| 164 configurator->EnableContentProtection(GetClientId(), new_display_id, | 140 controller_->SetProtection(display_id_, |
| 165 desired_method_mask_, | 141 display::CONTENT_PROTECTION_METHOD_NONE, |
| 166 base::Bind(&DoNothing)); | 142 base::Bind(&DoNothing)); |
| 167 configurator->EnableContentProtection( | |
| 168 GetClientId(), display_id_, display::CONTENT_PROTECTION_METHOD_NONE, | |
| 169 base::Bind(&DoNothing)); | |
| 170 } | 143 } |
| 171 display_id_ = new_display_id; | 144 display_id_ = new_display_id; |
| 172 } | 145 } |
| 173 | 146 |
| 174 void OutputProtectionDelegate::OnWindowDestroying(aura::Window* window) { | 147 void OutputProtectionDelegate::OnWindowDestroying(aura::Window* window) { |
| 175 DCHECK_EQ(window, window_); | 148 DCHECK_EQ(window, window_); |
| 176 window_->RemoveObserver(this); | 149 window_->RemoveObserver(this); |
| 177 window_ = nullptr; | 150 window_ = nullptr; |
| 178 } | 151 } |
| 179 | 152 |
| 180 } // namespace chromeos | 153 } // namespace chromeos |
| OLD | NEW |