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

Side by Side Diff: content/browser/compositor/browser_compositor_output_surface.cc

Issue 2018603002: Mac: Clean up ifdefs in output surface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 #include "content/browser/compositor/browser_compositor_output_surface.h" 5 #include "content/browser/compositor/browser_compositor_output_surface.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 base::Closure 144 base::Closure
145 BrowserCompositorOutputSurface::CreateCompositionStartedCallback() { 145 BrowserCompositorOutputSurface::CreateCompositionStartedCallback() {
146 return base::Closure(); 146 return base::Closure();
147 } 147 }
148 148
149 cc::OverlayCandidateValidator* 149 cc::OverlayCandidateValidator*
150 BrowserCompositorOutputSurface::GetOverlayCandidateValidator() const { 150 BrowserCompositorOutputSurface::GetOverlayCandidateValidator() const {
151 return overlay_candidate_validator_.get(); 151 return overlay_candidate_validator_.get();
152 } 152 }
153 153
154 #if defined(OS_MACOSX)
155 void BrowserCompositorOutputSurface::SetSurfaceSuspendedForRecycle(
156 bool suspended) {}
157 #endif
158
154 } // namespace content 159 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698