| OLD | NEW |
| 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 #include <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "base/callback.h" | 7 #include "base/callback.h" |
| 8 #include "base/memory/scoped_ptr.h" |
| 8 #include "ppapi/c/private/ppb_nacl_private.h" | 9 #include "ppapi/c/private/ppb_nacl_private.h" |
| 9 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" | 10 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" |
| 10 | 11 |
| 11 namespace blink { | 12 namespace blink { |
| 12 struct WebURLError; | 13 struct WebURLError; |
| 13 class WebURLLoader; | 14 class WebURLLoader; |
| 14 class WebURLResponse; | 15 class WebURLResponse; |
| 15 } | 16 } |
| 16 | 17 |
| 17 namespace nacl { | 18 namespace nacl { |
| 18 | 19 |
| 19 // Downloads a NaCl manifest (.nmf) and returns the contents of the file to | 20 // Downloads a NaCl manifest (.nmf) and returns the contents of the file to |
| 20 // caller through a callback. | 21 // caller through a callback. |
| 21 class ManifestDownloader : public blink::WebURLLoaderClient { | 22 class ManifestDownloader : public blink::WebURLLoaderClient { |
| 22 public: | 23 public: |
| 23 typedef base::Callback<void(PP_NaClError, const std::string&)> | 24 typedef base::Callback<void(PP_NaClError, const std::string&)> Callback; |
| 24 ManifestDownloaderCallback; | |
| 25 | |
| 26 ManifestDownloader(bool is_installed, ManifestDownloaderCallback cb); | |
| 27 virtual ~ManifestDownloader(); | |
| 28 | 25 |
| 29 // This is a pretty arbitrary limit on the byte size of the NaCl manifest | 26 // This is a pretty arbitrary limit on the byte size of the NaCl manifest |
| 30 // file. | 27 // file. |
| 31 // Note that the resulting string object has to have at least one byte extra | 28 // Note that the resulting string object has to have at least one byte extra |
| 32 // for the null termination character. | 29 // for the null termination character. |
| 33 static const size_t kNaClManifestMaxFileBytes = 1024 * 1024; | 30 static const size_t kNaClManifestMaxFileBytes = 1024 * 1024; |
| 34 | 31 |
| 32 ManifestDownloader(scoped_ptr<blink::WebURLLoader> url_loader, |
| 33 bool is_installed, |
| 34 Callback cb); |
| 35 virtual ~ManifestDownloader(); |
| 36 |
| 37 void Load(const blink::WebURLRequest& request); |
| 38 |
| 35 private: | 39 private: |
| 36 // WebURLLoaderClient implementation. | 40 // WebURLLoaderClient implementation. |
| 37 virtual void didReceiveResponse(blink::WebURLLoader* loader, | 41 virtual void didReceiveResponse(blink::WebURLLoader* loader, |
| 38 const blink::WebURLResponse& response); | 42 const blink::WebURLResponse& response); |
| 39 virtual void didReceiveData(blink::WebURLLoader* loader, | 43 virtual void didReceiveData(blink::WebURLLoader* loader, |
| 40 const char* data, | 44 const char* data, |
| 41 int data_length, | 45 int data_length, |
| 42 int encoded_data_length); | 46 int encoded_data_length); |
| 43 virtual void didFinishLoading(blink::WebURLLoader* loader, | 47 virtual void didFinishLoading(blink::WebURLLoader* loader, |
| 44 double finish_time, | 48 double finish_time, |
| 45 int64_t total_encoded_data_length); | 49 int64_t total_encoded_data_length); |
| 46 virtual void didFail(blink::WebURLLoader* loader, | 50 virtual void didFail(blink::WebURLLoader* loader, |
| 47 const blink::WebURLError& error); | 51 const blink::WebURLError& error); |
| 48 | 52 |
| 53 scoped_ptr<blink::WebURLLoader> url_loader_; |
| 49 bool is_installed_; | 54 bool is_installed_; |
| 50 ManifestDownloaderCallback cb_; | 55 Callback cb_; |
| 51 std::string buffer_; | 56 std::string buffer_; |
| 52 int status_code_; | 57 int status_code_; |
| 53 PP_NaClError pp_nacl_error_; | 58 PP_NaClError pp_nacl_error_; |
| 54 }; | 59 }; |
| 55 | 60 |
| 56 } // namespace nacl | 61 } // namespace nacl |
| OLD | NEW |