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

Side by Side Diff: cc/test/fake_painted_scrollbar_layer.cc

Issue 1194743002: cc: Remove ResourceUpdateQueue and ResourceUpdateController. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resourcequeue: header Created 5 years, 6 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 | « cc/scheduler/scheduler_unittest.cc ('k') | cc/test/fake_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "cc/test/fake_painted_scrollbar_layer.h" 5 #include "cc/test/fake_painted_scrollbar_layer.h"
6 6
7 #include "base/auto_reset.h" 7 #include "base/auto_reset.h"
8 #include "cc/resources/resource_update_queue.h"
9 #include "cc/test/fake_scrollbar.h" 8 #include "cc/test/fake_scrollbar.h"
10 9
11 namespace cc { 10 namespace cc {
12 11
13 scoped_refptr<FakePaintedScrollbarLayer> FakePaintedScrollbarLayer::Create( 12 scoped_refptr<FakePaintedScrollbarLayer> FakePaintedScrollbarLayer::Create(
14 const LayerSettings& settings, 13 const LayerSettings& settings,
15 bool paint_during_update, 14 bool paint_during_update,
16 bool has_thumb, 15 bool has_thumb,
17 int scrolling_layer_id) { 16 int scrolling_layer_id) {
18 FakeScrollbar* fake_scrollbar = new FakeScrollbar( 17 FakeScrollbar* fake_scrollbar = new FakeScrollbar(
(...skipping 29 matching lines...) Expand all
48 ++push_properties_count_; 47 ++push_properties_count_;
49 } 48 }
50 49
51 scoped_ptr<base::AutoReset<bool>> 50 scoped_ptr<base::AutoReset<bool>>
52 FakePaintedScrollbarLayer::IgnoreSetNeedsCommit() { 51 FakePaintedScrollbarLayer::IgnoreSetNeedsCommit() {
53 return make_scoped_ptr( 52 return make_scoped_ptr(
54 new base::AutoReset<bool>(&ignore_set_needs_commit_, true)); 53 new base::AutoReset<bool>(&ignore_set_needs_commit_, true));
55 } 54 }
56 55
57 } // namespace cc 56 } // namespace cc
OLDNEW
« no previous file with comments | « cc/scheduler/scheduler_unittest.cc ('k') | cc/test/fake_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698