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

Side by Side Diff: content/public/browser/android/synchronous_compositor.h

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent 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
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 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_
6 #define CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_ 6 #define CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 struct Frame { 51 struct Frame {
52 Frame(); 52 Frame();
53 ~Frame(); 53 ~Frame();
54 54
55 // Movable type. 55 // Movable type.
56 Frame(Frame&& rhs); 56 Frame(Frame&& rhs);
57 Frame& operator=(Frame&& rhs); 57 Frame& operator=(Frame&& rhs);
58 58
59 uint32_t output_surface_id; 59 uint32_t output_surface_id;
60 scoped_ptr<cc::CompositorFrame> frame; 60 std::unique_ptr<cc::CompositorFrame> frame;
61 61
62 private: 62 private:
63 DISALLOW_COPY_AND_ASSIGN(Frame); 63 DISALLOW_COPY_AND_ASSIGN(Frame);
64 }; 64 };
65 65
66 // "On demand" hardware draw. The content is first clipped to |damage_area|, 66 // "On demand" hardware draw. The content is first clipped to |damage_area|,
67 // then transformed through |transform|, and finally clipped to |view_size|. 67 // then transformed through |transform|, and finally clipped to |view_size|.
68 virtual Frame DemandDrawHw( 68 virtual Frame DemandDrawHw(
69 const gfx::Size& surface_size, 69 const gfx::Size& surface_size,
70 const gfx::Transform& transform, 70 const gfx::Transform& transform,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 // and if any input animation is active, it should tick now. 104 // and if any input animation is active, it should tick now.
105 virtual void OnComputeScroll(base::TimeTicks animation_time) = 0; 105 virtual void OnComputeScroll(base::TimeTicks animation_time) = 0;
106 106
107 protected: 107 protected:
108 virtual ~SynchronousCompositor() {} 108 virtual ~SynchronousCompositor() {}
109 }; 109 };
110 110
111 } // namespace content 111 } // namespace content
112 112
113 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_ 113 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_
OLDNEW
« no previous file with comments | « content/public/browser/android/provision_fetcher_factory.h ('k') | content/public/browser/appcache_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698