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

Side by Side Diff: content/public/browser/readback_types.h

Issue 593503003: Support error handling for Surface readbacks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use content namespace to resolve readback params. Created 6 years, 1 month 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_COMMON_READBACK_TYPES_H_
6 #define CONTENT_COMMON_READBACK_TYPES_H_
7
8 #include "base/callback.h"
9
10 class SkBitmap;
11
12 namespace content {
13
14 enum ReadbackResponse {
15 READBACK_SUCCESS,
16 READBACK_FAILED,
17 READBACK_FORMAT_NOT_SUPPORTED,
18 READBACK_NOT_SUPPORTED,
19 READBACK_SURFACE_UNAVAILABLE,
20 READBACK_MEMORY_ALLOCATION_FAILURE,
21 };
22
23 typedef const base::Callback<void(const SkBitmap&, const ReadbackResponse&)>
24 ReadbackRequestCallback;
25 } // namespace
piman 2014/11/07 01:55:42 nit: 'namespace content' Add blank line before }
sivag 2014/11/07 12:27:41 Done.
26
27 #endif // CONTENT_COMMON_READBACK_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698