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

Unified Diff: components/mus/ws/display_manager.cc

Issue 1406153004: components/mus/public/interfaces View => Window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Yet another rebase Created 5 years, 2 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 | « components/mus/ws/display_manager.h ('k') | components/mus/ws/display_manager_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/ws/display_manager.cc
diff --git a/components/mus/ws/display_manager.cc b/components/mus/ws/display_manager.cc
index 4a4359e975a3fb226a7de91af8bbd93164aef7e9..7f7c6dc34a32e474c566e1f947bdd9d975fa01a3 100644
--- a/components/mus/ws/display_manager.cc
+++ b/components/mus/ws/display_manager.cc
@@ -186,7 +186,7 @@ void DefaultDisplayManager::SetTitle(const base::string16& title) {
platform_window_->SetTitle(title);
}
-const mojo::ViewportMetrics& DefaultDisplayManager::GetViewportMetrics() {
+const mojom::ViewportMetrics& DefaultDisplayManager::GetViewportMetrics() {
return metrics_;
}
@@ -240,7 +240,7 @@ void DefaultDisplayManager::UpdateMetrics(const gfx::Size& size,
if (metrics_.size_in_pixels.To<gfx::Size>() == size &&
metrics_.device_pixel_ratio == device_pixel_ratio)
return;
- mojo::ViewportMetrics old_metrics;
+ mojom::ViewportMetrics old_metrics;
old_metrics.size_in_pixels = metrics_.size_in_pixels.Clone();
old_metrics.device_pixel_ratio = metrics_.device_pixel_ratio;
« no previous file with comments | « components/mus/ws/display_manager.h ('k') | components/mus/ws/display_manager_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698