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

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

Issue 931993002: Make image_decoder a Leaky LazyInstance (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactor webstore_install_helper to use ImageDecoder, remove DecodeBase64 support Created 5 years, 9 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 (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_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_HELPER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_HELPER_H_
6 #define CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_HELPER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_HELPER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/memory/weak_ptr.h" 11 #include "base/memory/weak_ptr.h"
12 #include "chrome/browser/image_decoder.h"
12 #include "content/public/browser/utility_process_host_client.h" 13 #include "content/public/browser/utility_process_host_client.h"
13 #include "net/url_request/url_fetcher_delegate.h" 14 #include "net/url_request/url_fetcher_delegate.h"
14 #include "third_party/skia/include/core/SkBitmap.h" 15 #include "third_party/skia/include/core/SkBitmap.h"
15 #include "url/gurl.h" 16 #include "url/gurl.h"
16 17
17 class SkBitmap; 18 class SkBitmap;
18 19
19 namespace base { 20 namespace base {
20 class DictionaryValue; 21 class DictionaryValue;
21 class ListValue; 22 class ListValue;
22 } 23 }
23 24
24 namespace content { 25 namespace content {
25 class UtilityProcessHost; 26 class UtilityProcessHost;
26 } 27 }
27 28
28 namespace net { 29 namespace net {
29 class URLFetcher; 30 class URLFetcher;
30 class URLRequestContextGetter; 31 class URLRequestContextGetter;
31 } 32 }
32 33
33 namespace extensions { 34 namespace extensions {
34 35
35 // This is a class to help dealing with webstore-provided data. It manages 36 // This is a class to help dealing with webstore-provided data. It manages
36 // sending work to the utility process for parsing manifests and 37 // sending work to the utility process for parsing manifests and
37 // fetching/decoding icon data. Clients must implement the 38 // fetching/decoding icon data. Clients must implement the
38 // WebstoreInstallHelper::Delegate interface to receive the parsed data. 39 // WebstoreInstallHelper::Delegate interface to receive the parsed data.
39 class WebstoreInstallHelper : public content::UtilityProcessHostClient, 40 class WebstoreInstallHelper : public ImageDecoder::Delegate,
41 public content::UtilityProcessHostClient,
40 public net::URLFetcherDelegate { 42 public net::URLFetcherDelegate {
41 public: 43 public:
42 class Delegate { 44 class Delegate {
43 public: 45 public:
44 enum InstallHelperResultCode { 46 enum InstallHelperResultCode {
45 UNKNOWN_ERROR, 47 UNKNOWN_ERROR,
46 ICON_ERROR, 48 ICON_ERROR,
47 MANIFEST_ERROR 49 MANIFEST_ERROR
48 }; 50 };
49 51
50 // Called when we've successfully parsed the manifest and decoded the icon 52 // Called when we've successfully parsed the manifest and decoded the icon
51 // in the utility process. Ownership of parsed_manifest is transferred. 53 // in the utility process. Ownership of parsed_manifest is transferred.
52 virtual void OnWebstoreParseSuccess( 54 virtual void OnWebstoreParseSuccess(
53 const std::string& id, 55 const std::string& id,
54 const SkBitmap& icon, 56 const SkBitmap& icon,
55 base::DictionaryValue* parsed_manifest) = 0; 57 base::DictionaryValue* parsed_manifest) = 0;
56 58
57 // Called to indicate a parse failure. The |result_code| parameter should 59 // Called to indicate a parse failure. The |result_code| parameter should
58 // indicate whether the problem was with the manifest or icon. 60 // indicate whether the problem was with the manifest or icon.
59 virtual void OnWebstoreParseFailure( 61 virtual void OnWebstoreParseFailure(
60 const std::string& id, 62 const std::string& id,
61 InstallHelperResultCode result_code, 63 InstallHelperResultCode result_code,
62 const std::string& error_message) = 0; 64 const std::string& error_message) = 0;
63 65
64 protected: 66 protected:
65 virtual ~Delegate() {} 67 virtual ~Delegate() {}
66 }; 68 };
67 69
68 // Only one of |icon_data| (based64-encoded icon data) or |icon_url| can be 70 // |icon_url| can be empty.
asargent_no_longer_on_chrome 2015/03/12 21:40:08 pedantic nit: We might want this to be something l
Theresa 2015/03/12 22:19:10 Done.
69 // specified, but it is legal for both to be empty.
70 WebstoreInstallHelper(Delegate* delegate, 71 WebstoreInstallHelper(Delegate* delegate,
71 const std::string& id, 72 const std::string& id,
72 const std::string& manifest, 73 const std::string& manifest,
73 const std::string& icon_data,
74 const GURL& icon_url, 74 const GURL& icon_url,
75 net::URLRequestContextGetter* context_getter); 75 net::URLRequestContextGetter* context_getter);
76 void Start(); 76 void Start();
77 77
78 private: 78 private:
79 ~WebstoreInstallHelper() override; 79 ~WebstoreInstallHelper() override;
80 80
81 void StartWorkOnIOThread(); 81 void StartWorkOnIOThread();
82 void StartFetchedImageDecode(); 82 void StartFetchedImageDecode();
83 void ReportResultsIfComplete(); 83 void ReportResultsIfComplete();
84 void ReportResultFromUIThread(); 84 void ReportResultFromUIThread();
85 85
86 // Implementing the net::URLFetcherDelegate interface. 86 // Implementing the net::URLFetcherDelegate interface.
87 void OnURLFetchComplete(const net::URLFetcher* source) override; 87 void OnURLFetchComplete(const net::URLFetcher* source) override;
88 88
89 // Implementing pieces of the UtilityProcessHostClient interface. 89 // Implementing pieces of the UtilityProcessHostClient interface.
90 bool OnMessageReceived(const IPC::Message& message) override; 90 bool OnMessageReceived(const IPC::Message& message) override;
91 91
92 // Message handlers. 92 // Message handlers.
93 void OnDecodeImageSucceeded(const SkBitmap& decoded_image);
94 void OnDecodeImageFailed();
95 void OnJSONParseSucceeded(const base::ListValue& wrapper); 93 void OnJSONParseSucceeded(const base::ListValue& wrapper);
96 void OnJSONParseFailed(const std::string& error_message); 94 void OnJSONParseFailed(const std::string& error_message);
97 95
96 // ImageDecoder::Delegate implementation.
97 void OnImageDecoded(const SkBitmap& decoded_image) override;
98 void OnDecodeImageFailed() override;
99
98 // The client who we'll report results back to. 100 // The client who we'll report results back to.
99 Delegate* delegate_; 101 Delegate* delegate_;
100 102
101 // The extension id of the manifest we're parsing. 103 // The extension id of the manifest we're parsing.
102 std::string id_; 104 std::string id_;
103 105
104 // The manifest to parse. 106 // The manifest to parse.
105 std::string manifest_; 107 std::string manifest_;
106 108
107 // Only one of these should be non-empty. If |icon_base64_data_| is non-emtpy, 109 // If |icon_url_| is non-empty, it needs to be fetched and decoded into an
108 // it's a base64-encoded string that needs to be parsed into an SkBitmap. If
109 // |icon_url_| is non-empty, it needs to be fetched and decoded into an
110 // SkBitmap. 110 // SkBitmap.
111 std::string icon_base64_data_;
112 GURL icon_url_; 111 GURL icon_url_;
113 std::vector<unsigned char> fetched_icon_data_; 112 std::vector<unsigned char> fetched_icon_data_;
114 113
115 // For fetching the icon, if needed. 114 // For fetching the icon, if needed.
116 scoped_ptr<net::URLFetcher> url_fetcher_; 115 scoped_ptr<net::URLFetcher> url_fetcher_;
117 net::URLRequestContextGetter* context_getter_; // Only usable on UI thread. 116 net::URLRequestContextGetter* context_getter_; // Only usable on UI thread.
118 117
119 base::WeakPtr<content::UtilityProcessHost> utility_host_; 118 base::WeakPtr<content::UtilityProcessHost> utility_host_;
120 119
121 // Flags for whether we're done doing icon decoding and manifest parsing. 120 // Flags for whether we're done doing icon decoding and manifest parsing.
122 bool icon_decode_complete_; 121 bool icon_decode_complete_;
123 bool manifest_parse_complete_; 122 bool manifest_parse_complete_;
124 123
125 // The results of succesful decoding/parsing. 124 // The results of succesful decoding/parsing.
126 SkBitmap icon_; 125 SkBitmap icon_;
127 scoped_ptr<base::DictionaryValue> parsed_manifest_; 126 scoped_ptr<base::DictionaryValue> parsed_manifest_;
128 127
129 // A details string for keeping track of any errors. 128 // A details string for keeping track of any errors.
130 std::string error_; 129 std::string error_;
131 130
132 // A code to distinguish between an error with the icon, and an error with the 131 // A code to distinguish between an error with the icon, and an error with the
133 // manifest. 132 // manifest.
134 Delegate::InstallHelperResultCode parse_error_; 133 Delegate::InstallHelperResultCode parse_error_;
135 }; 134 };
136 135
137 } // namespace extensions 136 } // namespace extensions
138 137
139 #endif // CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_HELPER_H_ 138 #endif // CHROME_BROWSER_EXTENSIONS_WEBSTORE_INSTALL_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698