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

Side by Side Diff: content/browser/compositor/browser_compositor_output_surface.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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ 5 #ifndef CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
6 #define CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ 6 #define CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h"
9 #include "base/threading/non_thread_safe.h" 10 #include "base/threading/non_thread_safe.h"
10 #include "build/build_config.h" 11 #include "build/build_config.h"
11 #include "cc/output/output_surface.h" 12 #include "cc/output/output_surface.h"
12 #include "content/common/content_export.h" 13 #include "content/common/content_export.h"
13 #include "ui/compositor/compositor_vsync_manager.h" 14 #include "ui/compositor/compositor_vsync_manager.h"
14 15
15 namespace cc { 16 namespace cc {
16 class SoftwareOutputDevice; 17 class SoftwareOutputDevice;
17 } 18 }
18 19
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 88
88 scoped_ptr<BrowserCompositorOverlayCandidateValidator> 89 scoped_ptr<BrowserCompositorOverlayCandidateValidator>
89 overlay_candidate_validator_; 90 overlay_candidate_validator_;
90 91
91 DISALLOW_COPY_AND_ASSIGN(BrowserCompositorOutputSurface); 92 DISALLOW_COPY_AND_ASSIGN(BrowserCompositorOutputSurface);
92 }; 93 };
93 94
94 } // namespace content 95 } // namespace content
95 96
96 #endif // CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ 97 #endif // CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698