Index: ui/base/test/material_design_controller_test_api.cc |
diff --git a/ui/base/test/material_design_controller_test_api.cc b/ui/base/test/material_design_controller_test_api.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..85e0c82b60dc93363ef2fca7f1aa7a46cb504dd2 |
--- /dev/null |
+++ b/ui/base/test/material_design_controller_test_api.cc |
@@ -0,0 +1,20 @@ |
+// Copyright 2015 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/base/test/material_design_controller_test_api.h" |
+ |
+namespace ui { |
+namespace test { |
+ |
+void MaterialDesignControllerTestAPI::SetLookAndFeel( |
+ MaterialDesignController::LookAndFeel look_and_feel) { |
+ MaterialDesignController::SetLookAndFeel(look_and_feel); |
+} |
+ |
+void MaterialDesignControllerTestAPI::UninitializeLookAndFeel() { |
+ MaterialDesignController::UninitializeLookAndFeel(); |
+} |
+ |
+} // namespace test |
+} // namespace ui |