Chromium Code Reviews| Index: content/public/browser/surface_utils.h |
| diff --git a/content/public/browser/surface_utils.h b/content/public/browser/surface_utils.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..555770b8a48cf290834815630298aba0f8fbb895 |
| --- /dev/null |
| +++ b/content/public/browser/surface_utils.h |
| @@ -0,0 +1,24 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
|
David Trainor- moved to gerrit
2016/03/17 21:44:15
2016
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_PUBLIC_BROWSER_SURFACE_UTILS_H_ |
| +#define CONTENT_PUBLIC_BROWSER_SURFACE_UTILS_H_ |
| + |
| +#include "base/memory/scoped_ptr.h" |
| +#include "content/common/content_export.h" |
| + |
| +namespace cc { |
| +class SurfaceIdAllocator; |
| +class SurfaceManager; |
| +} // namespace cc |
| + |
| +namespace content { |
| + |
| +scoped_ptr<cc::SurfaceIdAllocator> CreateSurfaceIdAllocator(); |
| + |
| +CONTENT_EXPORT cc::SurfaceManager* GetSurfaceManager(); |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_PUBLIC_BROWSER_SURFACE_UTILS_H_ |