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

Side by Side Diff: cc/test/fake_layer_tree_host_client.h

Issue 1866203004: Convert //cc from scoped_ptr to std::unique_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scopedptrcc: rebase Created 4 years, 8 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/test/fake_layer_tree_host.cc ('k') | cc/test/fake_layer_tree_host_client.cc » ('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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 #ifndef CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ 5 #ifndef CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_
6 #define CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ 6 #define CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include <memory>
9
9 #include "cc/input/input_handler.h" 10 #include "cc/input/input_handler.h"
10 #include "cc/test/test_context_provider.h" 11 #include "cc/test/test_context_provider.h"
11 #include "cc/trees/layer_tree_host_client.h" 12 #include "cc/trees/layer_tree_host_client.h"
12 #include "cc/trees/layer_tree_host_single_thread_client.h" 13 #include "cc/trees/layer_tree_host_single_thread_client.h"
13 14
14 namespace cc { 15 namespace cc {
15 class OutputSurface; 16 class OutputSurface;
16 17
17 class FakeLayerTreeHostClient : public LayerTreeHostClient, 18 class FakeLayerTreeHostClient : public LayerTreeHostClient,
18 public LayerTreeHostSingleThreadClient { 19 public LayerTreeHostSingleThreadClient {
(...skipping 23 matching lines...) Expand all
42 float top_controls_delta) override {} 43 float top_controls_delta) override {}
43 void RequestNewOutputSurface() override; 44 void RequestNewOutputSurface() override;
44 void DidInitializeOutputSurface() override {} 45 void DidInitializeOutputSurface() override {}
45 void DidFailToInitializeOutputSurface() override; 46 void DidFailToInitializeOutputSurface() override;
46 void WillCommit() override {} 47 void WillCommit() override {}
47 void DidCommit() override {} 48 void DidCommit() override {}
48 void DidCommitAndDrawFrame() override {} 49 void DidCommitAndDrawFrame() override {}
49 void DidCompleteSwapBuffers() override {} 50 void DidCompleteSwapBuffers() override {}
50 void DidCompletePageScaleAnimation() override {} 51 void DidCompletePageScaleAnimation() override {}
51 void RecordFrameTimingEvents( 52 void RecordFrameTimingEvents(
52 scoped_ptr<FrameTimingTracker::CompositeTimingSet> composite_events, 53 std::unique_ptr<FrameTimingTracker::CompositeTimingSet> composite_events,
53 scoped_ptr<FrameTimingTracker::MainFrameTimingSet> main_frame_events) 54 std::unique_ptr<FrameTimingTracker::MainFrameTimingSet> main_frame_events)
54 override {} 55 override {}
55 56
56 // LayerTreeHostSingleThreadClient implementation. 57 // LayerTreeHostSingleThreadClient implementation.
57 void DidPostSwapBuffers() override {} 58 void DidPostSwapBuffers() override {}
58 void DidAbortSwapBuffers() override {} 59 void DidAbortSwapBuffers() override {}
59 60
60 private: 61 private:
61 bool use_software_rendering_; 62 bool use_software_rendering_;
62 bool use_delegating_renderer_; 63 bool use_delegating_renderer_;
63 64
64 LayerTreeHost* host_; 65 LayerTreeHost* host_;
65 }; 66 };
66 67
67 } // namespace cc 68 } // namespace cc
68 69
69 #endif // CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ 70 #endif // CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_
OLDNEW
« no previous file with comments | « cc/test/fake_layer_tree_host.cc ('k') | cc/test/fake_layer_tree_host_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698