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

Side by Side Diff: content/browser/android/in_process/synchronous_compositor_impl.h

Issue 1874893002: Convert //content/browser from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_IMPL_H_ 5 #ifndef CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_IMPL_H_
6 #define CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_IMPL_H_ 6 #define CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory>
10 #include <vector> 11 #include <vector>
11 12
12 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
13 #include "base/macros.h" 14 #include "base/macros.h"
14 #include "base/memory/scoped_ptr.h"
15 #include "content/browser/android/synchronous_compositor_base.h" 15 #include "content/browser/android/synchronous_compositor_base.h"
16 #include "content/renderer/android/synchronous_compositor_external_begin_frame_s ource.h" 16 #include "content/renderer/android/synchronous_compositor_external_begin_frame_s ource.h"
17 #include "content/renderer/android/synchronous_compositor_output_surface.h" 17 #include "content/renderer/android/synchronous_compositor_output_surface.h"
18 #include "ipc/ipc_message.h" 18 #include "ipc/ipc_message.h"
19 #include "ui/events/blink/synchronous_input_handler_proxy.h" 19 #include "ui/events/blink/synchronous_input_handler_proxy.h"
20 20
21 namespace cc { 21 namespace cc {
22 class InputHandler; 22 class InputHandler;
23 } 23 }
24 24
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 SynchronousCompositor::Frame frame_holder_; 122 SynchronousCompositor::Frame frame_holder_;
123 123
124 base::WeakPtrFactory<SynchronousCompositorImpl> weak_ptr_factory_; 124 base::WeakPtrFactory<SynchronousCompositorImpl> weak_ptr_factory_;
125 125
126 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorImpl); 126 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorImpl);
127 }; 127 };
128 128
129 } // namespace content 129 } // namespace content
130 130
131 #endif // CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_IMPL_H_ 131 #endif // CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698