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

Unified Diff: ui/views/test/scoped_views_test_helper.h

Issue 2758323002: Broke out layout metric information from ViewsDelegate to LayoutProvider (Closed)
Patch Set: LayoutDelegate -> LayoutProvider Created 3 years, 8 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: ui/views/test/scoped_views_test_helper.h
diff --git a/ui/views/test/scoped_views_test_helper.h b/ui/views/test/scoped_views_test_helper.h
index bac1de0635ebf3f355d5401f5fc2a5a35f85b59a..f68bbed80269fab7d0a40dbca9165ffb3859649b 100644
--- a/ui/views/test/scoped_views_test_helper.h
+++ b/ui/views/test/scoped_views_test_helper.h
@@ -37,14 +37,16 @@ class ScopedViewsTestHelper {
// the RootWindow. Everywhere else, null.
gfx::NativeWindow GetContext();
- TestViewsDelegate* views_delegate() { return views_delegate_.get(); };
+ TestViewsDelegate* test_views_delegate() {
+ return test_views_delegate_.get();
+ };
sky 2017/04/12 22:43:58 remove trailing ;
kylix_rd 2017/04/13 16:45:42 Done.
PlatformTestHelper* platform_test_helper() {
return platform_test_helper_.get();
}
private:
- std::unique_ptr<TestViewsDelegate> views_delegate_;
+ std::unique_ptr<TestViewsDelegate> test_views_delegate_;
sky 2017/04/12 22:43:58 optional: leave existing name.
std::unique_ptr<ViewsTestHelper> test_helper_;
std::unique_ptr<PlatformTestHelper> platform_test_helper_;

Powered by Google App Engine
This is Rietveld 408576698