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

Side by Side Diff: chrome/browser/extensions/api/chrome_extensions_api_client.h

Issue 2837983002: Modify SetImageData to add additional items along with image data to save on clipboard. (Closed)
Patch Set: Nits and rebase. 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
« no previous file with comments | « no previous file | chrome/browser/extensions/api/chrome_extensions_api_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "extensions/browser/api/extensions_api_client.h" 10 #include "extensions/browser/api/extensions_api_client.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 ManagementAPIDelegate* CreateManagementAPIDelegate() const override; 55 ManagementAPIDelegate* CreateManagementAPIDelegate() const override;
56 MetricsPrivateDelegate* GetMetricsPrivateDelegate() override; 56 MetricsPrivateDelegate* GetMetricsPrivateDelegate() override;
57 NetworkingCastPrivateDelegate* GetNetworkingCastPrivateDelegate() override; 57 NetworkingCastPrivateDelegate* GetNetworkingCastPrivateDelegate() override;
58 58
59 #if defined(OS_CHROMEOS) 59 #if defined(OS_CHROMEOS)
60 NonNativeFileSystemDelegate* GetNonNativeFileSystemDelegate() override; 60 NonNativeFileSystemDelegate* GetNonNativeFileSystemDelegate() override;
61 61
62 void SaveImageDataToClipboard( 62 void SaveImageDataToClipboard(
63 const std::vector<char>& image_data, 63 const std::vector<char>& image_data,
64 api::clipboard::ImageType type, 64 api::clipboard::ImageType type,
65 AdditionalDataItemList additional_items,
65 const base::Closure& success_callback, 66 const base::Closure& success_callback,
66 const base::Callback<void(const std::string&)>& error_callback) override; 67 const base::Callback<void(const std::string&)>& error_callback) override;
67 #endif 68 #endif
68 69
69 private: 70 private:
70 std::unique_ptr<ChromeMetricsPrivateDelegate> metrics_private_delegate_; 71 std::unique_ptr<ChromeMetricsPrivateDelegate> metrics_private_delegate_;
71 std::unique_ptr<NetworkingCastPrivateDelegate> 72 std::unique_ptr<NetworkingCastPrivateDelegate>
72 networking_cast_private_delegate_; 73 networking_cast_private_delegate_;
73 74
74 #if defined(OS_CHROMEOS) 75 #if defined(OS_CHROMEOS)
75 std::unique_ptr<NonNativeFileSystemDelegate> non_native_file_system_delegate_; 76 std::unique_ptr<NonNativeFileSystemDelegate> non_native_file_system_delegate_;
76 std::unique_ptr<ClipboardExtensionHelper> clipboard_extension_helper_; 77 std::unique_ptr<ClipboardExtensionHelper> clipboard_extension_helper_;
77 #endif 78 #endif
78 79
79 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsAPIClient); 80 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsAPIClient);
80 }; 81 };
81 82
82 } // namespace extensions 83 } // namespace extensions
83 84
84 #endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ 85 #endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/api/chrome_extensions_api_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698