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

Side by Side Diff: chrome/browser/extensions/clipboard_extension_helper_chromeos.h

Issue 2379573008: Add SetImageData api to chrome.clipboard. (Closed)
Patch Set: Fix nits. Created 3 years, 11 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
(Empty)
1 // Copyright 2016 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 CHROME_BROWSER_EXTENSIONS_CLIPBOARD_EXTENSION_HELPER_CHROMEOS_H_
6 #define CHROME_BROWSER_EXTENSIONS_CLIPBOARD_EXTENSION_HELPER_CHROMEOS_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "base/callback.h"
12 #include "extensions/common/api/clipboard.h"
13
14 class SkBitmap;
15
16 namespace extensions {
17
18 // A helper class for decoding the image data and saving decoded image data on
19 // clipboard, called from clipboard extension API.
20 class ClipboardExtensionHelper {
21 public:
22 ClipboardExtensionHelper();
23 ~ClipboardExtensionHelper();
24
25 // Decodes and saves the image data on clipboard. Must run on UI thread.
26 void DecodeAndSaveImageData(
27 const std::vector<char>& data,
28 api::clipboard::ImageType type,
29 const base::Closure& success_callback,
30 const base::Callback<void(const std::string&)>& error_callback);
31
32 private:
33 // A class to decode PNG and JPEG file.
34 class ClipboardImageDataDecoder;
35
36 // Handles decoded image data.
37 void OnImageDecoded(const SkBitmap& bitmap);
38 // Handles image decoding failure case.
39 void OnImageDecodeFailure();
40 // Handles image decoding request cancelation case.
41 void OnImageDecodeCancel();
42
43 std::unique_ptr<ClipboardImageDataDecoder> clipboard_image_data_decoder_;
44 base::Closure image_save_success_callback_;
45 base::Callback<void(const std::string&)> image_save_error_callback_;
46
47 DISALLOW_COPY_AND_ASSIGN(ClipboardExtensionHelper);
48 };
49
50 } // namespace extensions
51
52 #endif // CHROME_BROWSER_EXTENSIONS_CLIPBOARD_EXTENSION_HELPER_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698