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

Unified Diff: chrome/browser/ui/views/harmony/layout_delegate.cc

Issue 2785683003: views: implement width snapping for DialogDelegateViews (Closed)
Patch Set: Created 3 years, 9 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
Index: chrome/browser/ui/views/harmony/layout_delegate.cc
diff --git a/chrome/browser/ui/views/harmony/layout_delegate.cc b/chrome/browser/ui/views/harmony/layout_delegate.cc
index 9967dcbb45a0a82b8aa501b4ba4a1b2145f62f87..c8a0afd28134393eaeea431c1fb062ddcf477fd5 100644
--- a/chrome/browser/ui/views/harmony/layout_delegate.cc
+++ b/chrome/browser/ui/views/harmony/layout_delegate.cc
@@ -90,8 +90,8 @@ bool LayoutDelegate::IsHarmonyMode() const {
return false;
}
-int LayoutDelegate::GetDialogPreferredWidth(DialogWidth width) const {
- return 0;
+int LayoutDelegate::GetSnappedDialogWidth(int width) const {
+ return width;
}
const views::TypographyProvider& LayoutDelegate::GetTypographyProvider() const {

Powered by Google App Engine
This is Rietveld 408576698