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

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

Issue 2837983002: Modify SetImageData to add additional items along with image data to save on clipboard. (Closed)
Patch Set: Make additional data items parameter optional and address other comments. Created 3 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 2016 The Chromium Authors. All rights reserved. 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 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 CHROME_BROWSER_EXTENSIONS_CLIPBOARD_EXTENSION_HELPER_CHROMEOS_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_CLIPBOARD_EXTENSION_HELPER_CHROMEOS_H_
6 #define CHROME_BROWSER_EXTENSIONS_CLIPBOARD_EXTENSION_HELPER_CHROMEOS_H_ 6 #define CHROME_BROWSER_EXTENSIONS_CLIPBOARD_EXTENSION_HELPER_CHROMEOS_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "extensions/browser/api/clipboard/clipboard_api.h"
12 #include "extensions/common/api/clipboard.h" 13 #include "extensions/common/api/clipboard.h"
13 14
14 class SkBitmap; 15 class SkBitmap;
15 16
16 namespace extensions { 17 namespace extensions {
17 18
18 // A helper class for decoding the image data and saving decoded image data on 19 // A helper class for decoding the image data and saving decoded image data on
19 // clipboard, called from clipboard extension API. 20 // clipboard, called from clipboard extension API.
20 class ClipboardExtensionHelper { 21 class ClipboardExtensionHelper {
21 public: 22 public:
22 ClipboardExtensionHelper(); 23 ClipboardExtensionHelper();
23 ~ClipboardExtensionHelper(); 24 ~ClipboardExtensionHelper();
24 25
25 // Decodes and saves the image data on clipboard. Must run on UI thread. 26 // Decodes and saves the image data on clipboard. Must run on UI thread.
26 void DecodeAndSaveImageData( 27 void DecodeAndSaveImageData(
27 const std::vector<char>& data, 28 const std::vector<char>& data,
28 api::clipboard::ImageType type, 29 api::clipboard::ImageType type,
30 std::unique_ptr<AdditionalDataItemList> additional_items,
29 const base::Closure& success_callback, 31 const base::Closure& success_callback,
30 const base::Callback<void(const std::string&)>& error_callback); 32 const base::Callback<void(const std::string&)>& error_callback);
31 33
32 private: 34 private:
33 // A class to decode PNG and JPEG file. 35 // A class to decode PNG and JPEG file.
34 class ClipboardImageDataDecoder; 36 class ClipboardImageDataDecoder;
35 37
36 // Handles decoded image data. 38 // Handles decoded image data.
37 void OnImageDecoded(const SkBitmap& bitmap); 39 void OnImageDecoded(const SkBitmap& bitmap);
38 // Handles image decoding failure case. 40 // Handles image decoding failure case.
39 void OnImageDecodeFailure(); 41 void OnImageDecodeFailure();
40 // Handles image decoding request cancelation case. 42 // Handles image decoding request cancelation case.
41 void OnImageDecodeCancel(); 43 void OnImageDecodeCancel();
42 44
43 std::unique_ptr<ClipboardImageDataDecoder> clipboard_image_data_decoder_; 45 std::unique_ptr<ClipboardImageDataDecoder> clipboard_image_data_decoder_;
44 base::Closure image_save_success_callback_; 46 base::Closure image_save_success_callback_;
45 base::Callback<void(const std::string&)> image_save_error_callback_; 47 base::Callback<void(const std::string&)> image_save_error_callback_;
48 AdditionalDataItemList additonal_items_;
46 49
47 DISALLOW_COPY_AND_ASSIGN(ClipboardExtensionHelper); 50 DISALLOW_COPY_AND_ASSIGN(ClipboardExtensionHelper);
48 }; 51 };
49 52
50 } // namespace extensions 53 } // namespace extensions
51 54
52 #endif // CHROME_BROWSER_EXTENSIONS_CLIPBOARD_EXTENSION_HELPER_CHROMEOS_H_ 55 #endif // CHROME_BROWSER_EXTENSIONS_CLIPBOARD_EXTENSION_HELPER_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698