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

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

Issue 1419123002: android: move overscroll effects to ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix exports for component build Created 5 years, 1 month 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/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
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