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

Unified Diff: ash/test/ash_test_base.h

Issue 215293003: Move all wallpaper file loading and decoding from DesktopBackgroundController to WallpaperManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update after review. Created 6 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: ash/test/ash_test_base.h
diff --git a/ash/test/ash_test_base.h b/ash/test/ash_test_base.h
index 193e71aaf1d24ad78a4594df4f7103a27ef17c66..12603b7918aec0f73654c7dda7b2588e53c49e51 100644
--- a/ash/test/ash_test_base.h
+++ b/ash/test/ash_test_base.h
@@ -93,6 +93,14 @@ class AshTestBase : public testing::Test {
// hasn't been created yet.
aura::test::EventGenerator& GetEventGenerator();
+ // True if the running environment supports multiple displays,
+ // or false otherwise (e.g. win8 bot).
+ static bool SupportsMultipleDisplays();
+
+ // True if the running environment supports host window resize,
+ // or false otherwise (e.g. win8 bot).
+ static bool SupportsHostWindowResize();
+
protected:
enum UserSessionBlockReason {
FIRST_BLOCK_REASON,
@@ -102,14 +110,6 @@ class AshTestBase : public testing::Test {
NUMBER_OF_BLOCK_REASONS
};
- // True if the running environment supports multiple displays,
- // or false otherwise (e.g. win8 bot).
- static bool SupportsMultipleDisplays();
-
- // True if the running environment supports host window resize,
- // or false otherwise (e.g. win8 bot).
- static bool SupportsHostWindowResize();
oshima 2014/04/07 17:16:11 Would you mind moving the body of this method to A
Alexander Alekseev 2014/04/08 13:18:49 Done.
-
void set_start_session(bool start_session) { start_session_ = start_session; }
AshTestHelper* ash_test_helper() { return ash_test_helper_.get(); }

Powered by Google App Engine
This is Rietveld 408576698