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

Unified Diff: chrome/browser/profiles/profile_impl.cc

Issue 11866004: Add scheme to HostZoomMap (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 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 | « no previous file | content/browser/host_zoom_map_impl.h » ('j') | content/public/browser/host_zoom_map.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_impl.cc
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
index 3fa025b8a4e5fb125a85c41b0ba1bab3a234e10d..48ebaebdfb6bbe0006e5ec99eaace5b16ca642f4 100644
--- a/chrome/browser/profiles/profile_impl.cc
+++ b/chrome/browser/profiles/profile_impl.cc
@@ -557,6 +557,18 @@ void ProfileImpl::InitHostZoomMap() {
}
}
+#if defined(OS_CHROMEOS)
+ host_zoom_map->SetZoomLevel(chrome::kChromeUIUberHost,
+ chrome::kChromeUIOobeHost,
Nikita (slow) 2013/01/11 15:23:55 nit: Alignment like this is more readable if it fi
+ 0);
+ host_zoom_map->SetZoomLevel(chrome::kChromeUIUberHost,
+ chrome::kChromeUILoginHost,
+ 0);
+ host_zoom_map->SetZoomLevel(chrome::kChromeUIUberHost,
+ chrome::kChromeUILockScreenHost,
+ 0);
+#endif
+
registrar_.Add(this, content::NOTIFICATION_ZOOM_LEVEL_CHANGED,
content::Source<HostZoomMap>(host_zoom_map));
}
« no previous file with comments | « no previous file | content/browser/host_zoom_map_impl.h » ('j') | content/public/browser/host_zoom_map.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698