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 "content/browser/frame_host/interstitial_page_impl.h" | 5 #include "content/browser/frame_host/interstitial_page_impl.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 519 if (rwh_view) { | 519 if (rwh_view) { |
| 520 // If the page has focus, focus the interstitial. | 520 // If the page has focus, focus the interstitial. |
| 521 if (rwh_view->HasFocus()) | 521 if (rwh_view->HasFocus()) |
| 522 Focus(); | 522 Focus(); |
| 523 | 523 |
| 524 // Hide the original RVH since we're showing the interstitial instead. | 524 // Hide the original RVH since we're showing the interstitial instead. |
| 525 rwh_view->Hide(); | 525 rwh_view->Hide(); |
| 526 } | 526 } |
| 527 } | 527 } |
| 528 | 528 |
| 529 WebContents* InterstitialPageImpl::OpenURL(const OpenURLParams& params) { | |
| 530 return nullptr; | |
|
nasko
2017/02/14 00:10:23
Let's add a NOTREACHED to ensure we don't accident
Patrick Noland
2017/02/14 01:16:16
Done.
| |
| 531 } | |
| 532 | |
| 529 RendererPreferences InterstitialPageImpl::GetRendererPrefs( | 533 RendererPreferences InterstitialPageImpl::GetRendererPrefs( |
| 530 BrowserContext* browser_context) const { | 534 BrowserContext* browser_context) const { |
| 531 delegate_->OverrideRendererPrefs(&renderer_preferences_); | 535 delegate_->OverrideRendererPrefs(&renderer_preferences_); |
| 532 return renderer_preferences_; | 536 return renderer_preferences_; |
| 533 } | 537 } |
| 534 | 538 |
| 535 void InterstitialPageImpl::RenderWidgetDeleted( | 539 void InterstitialPageImpl::RenderWidgetDeleted( |
| 536 RenderWidgetHostImpl* render_widget_host) { | 540 RenderWidgetHostImpl* render_widget_host) { |
| 537 // TODO(creis): Remove this method once we verify the shutdown path is sane. | 541 // TODO(creis): Remove this method once we verify the shutdown path is sane. |
| 538 CHECK(!web_contents_); | 542 CHECK(!web_contents_); |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 957 void InterstitialPageImpl::UpdateDeviceScaleFactor(double device_scale_factor) { | 961 void InterstitialPageImpl::UpdateDeviceScaleFactor(double device_scale_factor) { |
| 958 WebContentsImpl* web_contents_impl = | 962 WebContentsImpl* web_contents_impl = |
| 959 static_cast<WebContentsImpl*>(web_contents_); | 963 static_cast<WebContentsImpl*>(web_contents_); |
| 960 if (!web_contents_impl) | 964 if (!web_contents_impl) |
| 961 return; | 965 return; |
| 962 | 966 |
| 963 web_contents_impl->UpdateDeviceScaleFactor(device_scale_factor); | 967 web_contents_impl->UpdateDeviceScaleFactor(device_scale_factor); |
| 964 } | 968 } |
| 965 | 969 |
| 966 } // namespace content | 970 } // namespace content |
| OLD | NEW |