OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 // |
| 5 #include "ui/android/window_android_compositor.h" |
| 6 |
| 7 #include "base/lazy_instance.h" |
| 8 #include "cc/trees/layer_tree_settings.h" |
| 9 |
| 10 namespace ui { |
| 11 |
| 12 namespace { |
| 13 base::LazyInstance<cc::LayerSettings> g_layer_settings = |
| 14 LAZY_INSTANCE_INITIALIZER; |
| 15 } // anonymous namespace |
| 16 |
| 17 // static |
| 18 const cc::LayerSettings& WindowAndroidCompositor::LayerSettings() { |
| 19 return g_layer_settings.Get(); |
| 20 } |
| 21 |
| 22 // static |
| 23 void WindowAndroidCompositor::SetLayerSettings( |
| 24 const cc::LayerSettings& settings) { |
| 25 g_layer_settings.Get() = settings; |
| 26 } |
| 27 |
| 28 } // namespace ui |
OLD | NEW |