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

Side by Side Diff: ui/android/window_android_compositor.cc

Issue 1747783002: CC Animation: Erase old animation system in Android Compositor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « ui/android/window_android_compositor.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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/layers/layer_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
OLDNEW
« no previous file with comments | « ui/android/window_android_compositor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698