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

Unified Diff: ui/views/test/test_layout_provider.cc

Issue 2860953002: Harmony: Apply the upper bound on equal-sized button widths in DialogClientView. (Closed)
Patch Set: test_layout_provider.h, sanity checks, self-review: nit data member names Created 3 years, 7 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 | « ui/views/test/test_layout_provider.h ('k') | ui/views/window/dialog_client_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/test/test_layout_provider.cc
diff --git a/ui/views/test/test_layout_provider.cc b/ui/views/test/test_layout_provider.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a2f3fdaa6877dcee93ddacf2f0c908c853739663
--- /dev/null
+++ b/ui/views/test/test_layout_provider.cc
@@ -0,0 +1,31 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/views/test/test_layout_provider.h"
+
+namespace views {
+namespace test {
+
+TestLayoutProvider::TestLayoutProvider() {}
+TestLayoutProvider::~TestLayoutProvider() {}
+
+void TestLayoutProvider::SetDistanceMetric(int metric, int value) {
+ distance_metrics_[metric] = value;
+}
+void TestLayoutProvider::SetSnappedDialogWidth(int width) {
+ snapped_dialog_width_ = width;
+}
+
+int TestLayoutProvider::GetDistanceMetric(int metric) const {
+ if (distance_metrics_.count(metric))
+ return distance_metrics_.find(metric)->second;
+ return LayoutProvider::GetDistanceMetric(metric);
+}
+
+int TestLayoutProvider::GetSnappedDialogWidth(int min_width) const {
+ return snapped_dialog_width_ ? snapped_dialog_width_ : min_width;
+}
+
+} // namespace test
+} // namespace views
« no previous file with comments | « ui/views/test/test_layout_provider.h ('k') | ui/views/window/dialog_client_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698