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

Side by Side Diff: chrome/browser/ui/webui/media_router/media_router_dialog_controller_impl.cc

Issue 1243173003: [MediaRouter] Moved the code useful for Android to MediaRouterDialogController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@build-media-router-android
Patch Set: Moved base CloseMediaRouterDialog to the end of the derived implementation method Created 5 years, 5 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
OLDNEW
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 #include "chrome/browser/ui/webui/media_router/media_router_dialog_controller_im pl.h" 5 #include "chrome/browser/ui/webui/media_router/media_router_dialog_controller_im pl.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "chrome/browser/media/router/presentation_service_delegate_impl.h" 10 #include "chrome/browser/media/router/presentation_service_delegate_impl.h"
11 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/browser/ui/webui/constrained_web_dialog_ui.h" 12 #include "chrome/browser/ui/webui/constrained_web_dialog_ui.h"
13 #include "chrome/browser/ui/webui/media_router/media_router_ui.h" 13 #include "chrome/browser/ui/webui/media_router/media_router_ui.h"
14 #include "chrome/common/url_constants.h" 14 #include "chrome/common/url_constants.h"
15 #include "components/web_modal/web_contents_modal_dialog_host.h" 15 #include "components/web_modal/web_contents_modal_dialog_host.h"
16 #include "content/public/browser/browser_thread.h" 16 #include "content/public/browser/browser_thread.h"
17 #include "content/public/browser/navigation_controller.h" 17 #include "content/public/browser/navigation_controller.h"
18 #include "content/public/browser/navigation_details.h" 18 #include "content/public/browser/navigation_details.h"
19 #include "content/public/browser/navigation_entry.h" 19 #include "content/public/browser/navigation_entry.h"
20 #include "content/public/browser/render_frame_host.h" 20 #include "content/public/browser/render_frame_host.h"
21 #include "content/public/browser/render_process_host.h" 21 #include "content/public/browser/render_process_host.h"
22 #include "content/public/browser/render_view_host.h" 22 #include "content/public/browser/render_view_host.h"
23 #include "content/public/browser/web_contents.h"
24 #include "content/public/browser/web_contents_delegate.h"
25 #include "ui/web_dialogs/web_dialog_delegate.h" 23 #include "ui/web_dialogs/web_dialog_delegate.h"
26 #include "ui/web_dialogs/web_dialog_web_contents_delegate.h" 24 #include "ui/web_dialogs/web_dialog_web_contents_delegate.h"
27 #include "url/gurl.h" 25 #include "url/gurl.h"
28 26
29 DEFINE_WEB_CONTENTS_USER_DATA_KEY( 27 DEFINE_WEB_CONTENTS_USER_DATA_KEY(
30 media_router::MediaRouterDialogControllerImpl); 28 media_router::MediaRouterDialogControllerImpl);
31 29
32 using content::LoadCommittedDetails; 30 using content::LoadCommittedDetails;
33 using content::NavigationController; 31 using content::NavigationController;
34 using content::WebContents; 32 using content::WebContents;
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 } 141 }
144 142
145 void RenderProcessGone(base::TerminationStatus status) override { 143 void RenderProcessGone(base::TerminationStatus status) override {
146 // NOTE: |this| is deleted after CloseMediaRouterDialog() returns. 144 // NOTE: |this| is deleted after CloseMediaRouterDialog() returns.
147 dialog_controller_->CloseMediaRouterDialog(); 145 dialog_controller_->CloseMediaRouterDialog();
148 } 146 }
149 147
150 MediaRouterDialogControllerImpl* const dialog_controller_; 148 MediaRouterDialogControllerImpl* const dialog_controller_;
151 }; 149 };
152 150
153 class MediaRouterDialogControllerImpl::InitiatorWebContentsObserver
154 : public content::WebContentsObserver {
155 public:
156 InitiatorWebContentsObserver(
157 WebContents* web_contents,
158 MediaRouterDialogControllerImpl* dialog_controller)
159 : content::WebContentsObserver(web_contents),
160 dialog_controller_(dialog_controller) {
161 }
162
163 private:
164 void WebContentsDestroyed() override {
165 // NOTE: |this| is deleted after CloseMediaRouterDialog() returns.
166 dialog_controller_->CloseMediaRouterDialog();
167 }
168
169 void NavigationEntryCommitted(const LoadCommittedDetails& load_details)
170 override {
171 // NOTE: |this| is deleted after CloseMediaRouterDialog() returns.
172 dialog_controller_->CloseMediaRouterDialog();
173 }
174
175 void RenderProcessGone(base::TerminationStatus status) override {
176 // NOTE: |this| is deleted after CloseMediaRouterDialog() returns.
177 dialog_controller_->CloseMediaRouterDialog();
178 }
179
180 MediaRouterDialogControllerImpl* const dialog_controller_;
181 };
182
183 MediaRouterDialogControllerImpl::MediaRouterDialogControllerImpl( 151 MediaRouterDialogControllerImpl::MediaRouterDialogControllerImpl(
184 WebContents* web_contents) 152 WebContents* web_contents)
185 : initiator_(web_contents), 153 : MediaRouterDialogController(web_contents),
186 media_router_dialog_pending_(false) { 154 media_router_dialog_pending_(false) {
187 DCHECK(initiator_);
188 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); 155 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
189 } 156 }
190 157
191 MediaRouterDialogControllerImpl::~MediaRouterDialogControllerImpl() { 158 MediaRouterDialogControllerImpl::~MediaRouterDialogControllerImpl() {
192 DCHECK(thread_checker_.CalledOnValidThread()); 159 DCHECK(thread_checker_.CalledOnValidThread());
193 } 160 }
194 161
195 WebContents* MediaRouterDialogControllerImpl::ShowMediaRouterDialog() { 162 WebContents* MediaRouterDialogControllerImpl::ShowMediaRouterDialog() {
196 DCHECK(thread_checker_.CalledOnValidThread()); 163 DCHECK(thread_checker_.CalledOnValidThread());
197 164
198 // Get the media router dialog for |initiator|, or create a new dialog 165 // Get the media router dialog for |initiator|, or create a new dialog
199 // if not found. 166 // if not found.
200 WebContents* media_router_dialog = GetMediaRouterDialog(); 167 WebContents* media_router_dialog = GetMediaRouterDialog();
201 if (!media_router_dialog) { 168 if (!media_router_dialog) {
202 CreateMediaRouterDialog(); 169 CreateMediaRouterDialog();
203 return GetMediaRouterDialog(); 170 return GetMediaRouterDialog();
204 } 171 }
205 172
206 // Show the initiator holding the existing media router dialog. 173 // Show the initiator holding the existing media router dialog.
207 initiator_->GetDelegate()->ActivateContents(initiator_); 174 ActivateInitiatorWebContents();
208 return media_router_dialog; 175 return media_router_dialog;
209 } 176 }
210 177
211 bool MediaRouterDialogControllerImpl::ShowMediaRouterDialogForPresentation( 178 bool MediaRouterDialogControllerImpl::ShowMediaRouterDialogForPresentation(
212 scoped_ptr<CreatePresentationSessionRequest> request) { 179 scoped_ptr<CreatePresentationSessionRequest> request) {
213 DCHECK(thread_checker_.CalledOnValidThread()); 180 DCHECK(thread_checker_.CalledOnValidThread());
214 181
215 // Get the media router dialog for |initiator|, or create a new dialog 182 // Get the media router dialog for |initiator|, or create a new dialog
216 // if not found. 183 // if not found.
217 WebContents* media_router_dialog = GetMediaRouterDialog(); 184 WebContents* media_router_dialog = GetMediaRouterDialog();
218 if (!media_router_dialog) { 185 if (!media_router_dialog) {
219 CreateMediaRouterDialog(); 186 CreateMediaRouterDialog();
imcheng 2015/07/23 00:41:14 I think there might have been a bad merge: 1) Set
whywhat 2015/07/23 21:20:09 Bad merge when? This matches the code on trunk as
220 media_router_dialog = GetMediaRouterDialog(); 187 media_router_dialog = GetMediaRouterDialog();
221 presentation_request_ = request.Pass(); 188 SetPresentationRequest(request.Pass());
222 return true; 189 return true;
223 } 190 }
224 191
225 // Show the initiator holding the existing media router dialog. 192 // Show the initiator holding the existing media router dialog.
226 initiator_->GetDelegate()->ActivateContents(initiator_); 193 ActivateInitiatorWebContents();
227 return false; 194 return false;
228 } 195 }
229 196
230 WebContents* MediaRouterDialogControllerImpl::GetMediaRouterDialog() const { 197 WebContents* MediaRouterDialogControllerImpl::GetMediaRouterDialog() const {
231 DCHECK(thread_checker_.CalledOnValidThread()); 198 DCHECK(thread_checker_.CalledOnValidThread());
232 return dialog_observer_.get() ? dialog_observer_->web_contents() : nullptr; 199 return dialog_observer_.get() ? dialog_observer_->web_contents() : nullptr;
233 } 200 }
234 201
235 void MediaRouterDialogControllerImpl::CloseMediaRouterDialog() { 202 void MediaRouterDialogControllerImpl::CloseMediaRouterDialog() {
236 DCHECK(thread_checker_.CalledOnValidThread()); 203 DCHECK(thread_checker_.CalledOnValidThread());
237 DCHECK(initiator_observer_.get());
238 WebContents* media_router_dialog = GetMediaRouterDialog(); 204 WebContents* media_router_dialog = GetMediaRouterDialog();
239 CHECK(media_router_dialog); 205 CHECK(media_router_dialog);
240 Reset();
241
242 content::WebUI* web_ui = media_router_dialog->GetWebUI(); 206 content::WebUI* web_ui = media_router_dialog->GetWebUI();
243 if (web_ui) { 207 if (web_ui) {
244 MediaRouterUI* media_router_ui = 208 MediaRouterUI* media_router_ui =
245 static_cast<MediaRouterUI*>(web_ui->GetController()); 209 static_cast<MediaRouterUI*>(web_ui->GetController());
246 if (media_router_ui) 210 if (media_router_ui)
247 media_router_ui->Close(); 211 media_router_ui->Close();
248 } 212 }
213 MediaRouterDialogController::CloseMediaRouterDialog();
imcheng 2015/07/23 00:41:14 this should be placed above the web_ui above to pr
whywhat 2015/07/23 21:20:09 I guess, although it becomes a bit fragile: 1. The
249 } 214 }
250 215
251 void MediaRouterDialogControllerImpl::CreateMediaRouterDialog() { 216 void MediaRouterDialogControllerImpl::CreateMediaRouterDialog() {
252 DCHECK(!initiator_observer_.get());
253 DCHECK(!dialog_observer_.get()); 217 DCHECK(!dialog_observer_.get());
254 218
255 Profile* profile = 219 Profile* profile =
256 Profile::FromBrowserContext(initiator_->GetBrowserContext()); 220 Profile::FromBrowserContext(initiator()->GetBrowserContext());
imcheng 2015/07/23 00:41:14 nit: suggest having a initiator local variable so
whywhat 2015/07/23 21:20:09 Since it's an inline getter, I don't think there's
whywhat 2015/07/23 21:20:09 Since it's an inline getter method, I don't think
257 DCHECK(profile); 221 DCHECK(profile);
258 222
259 WebDialogDelegate* web_dialog_delegate = new MediaRouterDialogDelegate; 223 WebDialogDelegate* web_dialog_delegate = new MediaRouterDialogDelegate;
260 224
261 // |web_dialog_delegate|'s owner is |constrained_delegate|. 225 // |web_dialog_delegate|'s owner is |constrained_delegate|.
262 // |constrained_delegate| is owned by the parent |views::View|. 226 // |constrained_delegate| is owned by the parent |views::View|.
263 // TODO(apacible): Remove after autoresizing is implemented for OSX. 227 // TODO(apacible): Remove after autoresizing is implemented for OSX.
264 #if defined(OS_MACOSX) 228 #if defined(OS_MACOSX)
265 ConstrainedWebDialogDelegate* constrained_delegate = 229 ConstrainedWebDialogDelegate* constrained_delegate =
266 ShowConstrainedWebDialog(profile, web_dialog_delegate, initiator_); 230 ShowConstrainedWebDialog(profile, web_dialog_delegate, initiator());
267 #else 231 #else
268 // TODO(apacible): Adjust min and max sizes based on new WebUI design. 232 // TODO(apacible): Adjust min and max sizes based on new WebUI design.
269 gfx::Size min_size = gfx::Size(kWidth, kMinHeight); 233 gfx::Size min_size = gfx::Size(kWidth, kMinHeight);
270 gfx::Size max_size = gfx::Size(kWidth, kMaxHeight); 234 gfx::Size max_size = gfx::Size(kWidth, kMaxHeight);
271 235
272 // |ShowConstrainedWebDialogWithAutoResize()| will end up creating 236 // |ShowConstrainedWebDialogWithAutoResize()| will end up creating
273 // ConstrainedWebDialogDelegateViewViews containing a WebContents containing 237 // ConstrainedWebDialogDelegateViewViews containing a WebContents containing
274 // the MediaRouterUI, using the provided |web_dialog_delegate|. Then, the 238 // the MediaRouterUI, using the provided |web_dialog_delegate|. Then, the
275 // view is shown as a modal dialog constrained to the |initiator| WebContents. 239 // view is shown as a modal dialog constrained to the |initiator| WebContents.
276 // The dialog will resize between the |min_size| and |max_size| bounds based 240 // The dialog will resize between the |min_size| and |max_size| bounds based
277 // on the currently rendered contents. 241 // on the currently rendered contents.
278 ConstrainedWebDialogDelegate* constrained_delegate = 242 ConstrainedWebDialogDelegate* constrained_delegate =
279 ShowConstrainedWebDialogWithAutoResize( 243 ShowConstrainedWebDialogWithAutoResize(
280 profile, web_dialog_delegate, initiator_, min_size, max_size); 244 profile, web_dialog_delegate, initiator(), min_size, max_size);
281 #endif 245 #endif
282 246
283 WebContents* media_router_dialog = constrained_delegate->GetWebContents(); 247 WebContents* media_router_dialog = constrained_delegate->GetWebContents();
284 248
285 media_router_dialog_pending_ = true; 249 media_router_dialog_pending_ = true;
286 250
287 initiator_observer_.reset(new InitiatorWebContentsObserver( 251 MediaRouterDialogController::CreateMediaRouterDialog();
288 initiator_, this));
289 dialog_observer_.reset(new DialogWebContentsObserver( 252 dialog_observer_.reset(new DialogWebContentsObserver(
290 media_router_dialog, this)); 253 media_router_dialog, this));
291 } 254 }
292 255
293 void MediaRouterDialogControllerImpl::Reset() { 256 void MediaRouterDialogControllerImpl::Reset() {
257 MediaRouterDialogController::Reset();
imcheng 2015/07/23 00:41:14 this should be after the DCHECKs
whywhat 2015/07/23 21:20:09 Done.
294 DCHECK(thread_checker_.CalledOnValidThread()); 258 DCHECK(thread_checker_.CalledOnValidThread());
295 DCHECK(initiator_observer_.get());
296 DCHECK(dialog_observer_.get()); 259 DCHECK(dialog_observer_.get());
297 initiator_observer_.reset();
298 dialog_observer_.reset(); 260 dialog_observer_.reset();
299 presentation_request_.reset();
300 } 261 }
301 262
302 void MediaRouterDialogControllerImpl::OnDialogNavigated( 263 void MediaRouterDialogControllerImpl::OnDialogNavigated(
303 const content::LoadCommittedDetails& details) { 264 const content::LoadCommittedDetails& details) {
304 DCHECK(thread_checker_.CalledOnValidThread()); 265 DCHECK(thread_checker_.CalledOnValidThread());
305 WebContents* media_router_dialog = GetMediaRouterDialog(); 266 WebContents* media_router_dialog = GetMediaRouterDialog();
306 CHECK(media_router_dialog); 267 CHECK(media_router_dialog);
307 ui::PageTransition transition_type = details.entry->GetTransitionType(); 268 ui::PageTransition transition_type = details.entry->GetTransitionType();
308 content::NavigationType nav_type = details.type; 269 content::NavigationType nav_type = details.type;
309 270
310 // New |media_router_dialog| is created. 271 // New |media_router_dialog| is created.
311 DCHECK(media_router_dialog_pending_); 272 DCHECK(media_router_dialog_pending_);
312 DCHECK(transition_type == ui::PAGE_TRANSITION_AUTO_TOPLEVEL && 273 DCHECK(transition_type == ui::PAGE_TRANSITION_AUTO_TOPLEVEL &&
313 nav_type == content::NAVIGATION_TYPE_NEW_PAGE) 274 nav_type == content::NAVIGATION_TYPE_NEW_PAGE)
314 << "transition_type: " << transition_type << ", " 275 << "transition_type: " << transition_type << ", "
315 << "nav_type: " << nav_type; 276 << "nav_type: " << nav_type;
316 277
317 media_router_dialog_pending_ = false; 278 media_router_dialog_pending_ = false;
318 279
319 PopulateDialog(media_router_dialog); 280 PopulateDialog(media_router_dialog);
320 } 281 }
321 282
322 void MediaRouterDialogControllerImpl::PopulateDialog( 283 void MediaRouterDialogControllerImpl::PopulateDialog(
323 content::WebContents* media_router_dialog) { 284 content::WebContents* media_router_dialog) {
324 DCHECK(media_router_dialog); 285 DCHECK(media_router_dialog);
325 DCHECK(initiator_observer_); 286 DCHECK(initiator());
imcheng 2015/07/23 00:41:14 nit: suggest having a initiator local variable so
whywhat 2015/07/23 21:20:09 Same as above.
326 if (!initiator_observer_) { 287 if (!initiator() || !media_router_dialog->GetWebUI()) {
327 Reset(); 288 Reset();
328 return; 289 return;
329 } 290 }
330 content::WebContents* initiator = initiator_observer_->web_contents();
331 DCHECK(initiator);
332 if (!initiator || !media_router_dialog->GetWebUI()) {
333 Reset();
334 return;
335 }
336 291
337 MediaRouterUI* media_router_ui = static_cast<MediaRouterUI*>( 292 MediaRouterUI* media_router_ui = static_cast<MediaRouterUI*>(
338 media_router_dialog->GetWebUI()->GetController()); 293 media_router_dialog->GetWebUI()->GetController());
339 DCHECK(media_router_ui); 294 DCHECK(media_router_ui);
340 if (!media_router_ui) { 295 if (!media_router_ui) {
341 Reset(); 296 Reset();
342 return; 297 return;
343 } 298 }
344 299
345 if (!presentation_request_.get()) { 300 scoped_ptr<CreatePresentationSessionRequest> presentation_request(
301 PassPresentationRequest());
302 if (!presentation_request.get()) {
346 // TODO(imcheng): Don't create PresentationServiceDelegateImpl if it doesn't 303 // TODO(imcheng): Don't create PresentationServiceDelegateImpl if it doesn't
347 // exist (crbug.com/508695). 304 // exist (crbug.com/508695).
348 base::WeakPtr<PresentationServiceDelegateImpl> delegate = 305 base::WeakPtr<PresentationServiceDelegateImpl> delegate =
349 PresentationServiceDelegateImpl::GetOrCreateForWebContents(initiator) 306 PresentationServiceDelegateImpl::GetOrCreateForWebContents(initiator())
350 ->GetWeakPtr(); 307 ->GetWeakPtr();
351 media_router_ui->InitWithDefaultMediaSource(delegate); 308 media_router_ui->InitWithDefaultMediaSource(delegate);
352 } else { 309 } else {
353 media_router_ui->InitWithPresentationSessionRequest( 310 media_router_ui->InitWithPresentationSessionRequest(
354 initiator, presentation_request_.Pass()); 311 initiator(), presentation_request.Pass());
355 } 312 }
356 } 313 }
357 314
358 } // namespace media_router 315 } // namespace media_router
359 316
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698