OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_BASE_MATERIAL_DESIGN_MATERIAL_DESIGN_CONTROLLER_H_ | 5 #ifndef UI_BASE_MATERIAL_DESIGN_MATERIAL_DESIGN_CONTROLLER_H_ |
6 #define UI_BASE_MATERIAL_DESIGN_MATERIAL_DESIGN_CONTROLLER_H_ | 6 #define UI_BASE_MATERIAL_DESIGN_MATERIAL_DESIGN_CONTROLLER_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "ui/base/ui_base_export.h" | 9 #include "ui/base/ui_base_export.h" |
10 | 10 |
(...skipping 26 matching lines...) Expand all Loading... |
37 // Returns true if the current mode is a material design variant. | 37 // Returns true if the current mode is a material design variant. |
38 static bool IsModeMaterial(); | 38 static bool IsModeMaterial(); |
39 | 39 |
40 // Returns true if the current mode is a material design variant and this mode | 40 // Returns true if the current mode is a material design variant and this mode |
41 // should be extended to cover secondary UI. | 41 // should be extended to cover secondary UI. |
42 static bool IsSecondaryUiMaterial(); | 42 static bool IsSecondaryUiMaterial(); |
43 | 43 |
44 // Returns the per-platform default material design variant. | 44 // Returns the per-platform default material design variant. |
45 static Mode DefaultMode(); | 45 static Mode DefaultMode(); |
46 | 46 |
| 47 static bool is_mode_initialized() { return is_mode_initialized_; } |
| 48 |
47 private: | 49 private: |
48 friend class test::MaterialDesignControllerTestAPI; | 50 friend class test::MaterialDesignControllerTestAPI; |
49 | 51 |
50 // Tracks whether |mode_| has been initialized. This is necessary so tests can | 52 // Tracks whether |mode_| has been initialized. This is necessary so tests can |
51 // reset the state back to a clean state during tear down. | 53 // reset the state back to a clean state during tear down. |
52 static bool is_mode_initialized_; | 54 static bool is_mode_initialized_; |
53 | 55 |
54 // The current Mode to be used by the system. | 56 // The current Mode to be used by the system. |
55 static Mode mode_; | 57 static Mode mode_; |
56 | 58 |
(...skipping 12 matching lines...) Expand all Loading... |
69 // Set |mode_| to |mode| and updates |is_mode_initialized_| to true. Can be | 71 // Set |mode_| to |mode| and updates |is_mode_initialized_| to true. Can be |
70 // used by tests to directly set the mode. | 72 // used by tests to directly set the mode. |
71 static void SetMode(Mode mode); | 73 static void SetMode(Mode mode); |
72 | 74 |
73 DISALLOW_COPY_AND_ASSIGN(MaterialDesignController); | 75 DISALLOW_COPY_AND_ASSIGN(MaterialDesignController); |
74 }; | 76 }; |
75 | 77 |
76 } // namespace ui | 78 } // namespace ui |
77 | 79 |
78 #endif // UI_BASE_MATERIAL_DESIGN_MATERIAL_DESIGN_CONTROLLER_H_ | 80 #endif // UI_BASE_MATERIAL_DESIGN_MATERIAL_DESIGN_CONTROLLER_H_ |
OLD | NEW |