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

Side by Side Diff: chrome/utility/chrome_content_utility_client.h

Issue 865543002: WIP: Browser image decoding using Mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup and add DecodeImageBase64. Created 5 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
« no previous file with comments | « chrome/utility/BUILD.gn ('k') | chrome/utility/chrome_content_utility_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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ 5 #ifndef CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_
6 #define CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ 6 #define CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 10 matching lines...) Expand all
21 21
22 class UtilityMessageHandler; 22 class UtilityMessageHandler;
23 23
24 class ChromeContentUtilityClient : public content::ContentUtilityClient { 24 class ChromeContentUtilityClient : public content::ContentUtilityClient {
25 public: 25 public:
26 ChromeContentUtilityClient(); 26 ChromeContentUtilityClient();
27 ~ChromeContentUtilityClient() override; 27 ~ChromeContentUtilityClient() override;
28 28
29 void UtilityThreadStarted() override; 29 void UtilityThreadStarted() override;
30 bool OnMessageReceived(const IPC::Message& message) override; 30 bool OnMessageReceived(const IPC::Message& message) override;
31 void RegisterMojoServices(content::ServiceRegistry* registry) override;
31 32
32 static void PreSandboxStartup(); 33 static void PreSandboxStartup();
33 34
34 // Shared with extensions::ExtensionsHandler.
35 static SkBitmap DecodeImage(const std::vector<unsigned char>& encoded_data,
36 bool shrink_to_fit);
37 static void DecodeImageAndSend(const std::vector<unsigned char>& encoded_data,
38 bool shrink_to_fit);
39
40 static void set_max_ipc_message_size_for_test(int64_t max_message_size) { 35 static void set_max_ipc_message_size_for_test(int64_t max_message_size) {
41 max_ipc_message_size_ = max_message_size; 36 max_ipc_message_size_ = max_message_size;
42 } 37 }
43 38
44 private: 39 private:
45 // IPC message handlers. 40 // IPC message handlers.
46 void OnUnpackWebResource(const std::string& resource_data); 41 void OnUnpackWebResource(const std::string& resource_data);
47 void OnDecodeImage(const std::vector<unsigned char>& encoded_data,
48 bool shrink_to_fit);
49 void OnRobustJPEGDecodeImage(
50 const std::vector<unsigned char>& encoded_data);
51 42
52 #if defined(OS_CHROMEOS) 43 #if defined(OS_CHROMEOS)
53 void OnCreateZipFile(const base::FilePath& src_dir, 44 void OnCreateZipFile(const base::FilePath& src_dir,
54 const std::vector<base::FilePath>& src_relative_paths, 45 const std::vector<base::FilePath>& src_relative_paths,
55 const base::FileDescriptor& dest_fd); 46 const base::FileDescriptor& dest_fd);
56 #endif // defined(OS_CHROMEOS) 47 #endif // defined(OS_CHROMEOS)
57 48
58 void OnParseJSON(const std::string& json); 49 void OnParseJSON(const std::string& json);
59 void OnPatchFileBsdiff(const base::FilePath& input_file, 50 void OnPatchFileBsdiff(const base::FilePath& input_file,
60 const base::FilePath& patch_file, 51 const base::FilePath& patch_file,
(...skipping 19 matching lines...) Expand all
80 bool filter_messages_; 71 bool filter_messages_;
81 // A list of message_ids to filter. 72 // A list of message_ids to filter.
82 std::set<int> message_id_whitelist_; 73 std::set<int> message_id_whitelist_;
83 // Maximum IPC msg size (default to kMaximumMessageSize; override for testing) 74 // Maximum IPC msg size (default to kMaximumMessageSize; override for testing)
84 static int64_t max_ipc_message_size_; 75 static int64_t max_ipc_message_size_;
85 76
86 DISALLOW_COPY_AND_ASSIGN(ChromeContentUtilityClient); 77 DISALLOW_COPY_AND_ASSIGN(ChromeContentUtilityClient);
87 }; 78 };
88 79
89 #endif // CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ 80 #endif // CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/utility/BUILD.gn ('k') | chrome/utility/chrome_content_utility_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698