| 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 "base/memory/scoped_ptr.h" |
| 9 #include "ppapi/c/private/ppb_nacl_private.h" | 9 #include "components/nacl/renderer/ppb_nacl_private.h" |
| 10 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" | 10 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 struct WebURLError; | 13 struct WebURLError; |
| 14 class WebURLLoader; | 14 class WebURLLoader; |
| 15 class WebURLResponse; | 15 class WebURLResponse; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace nacl { | 18 namespace nacl { |
| 19 | 19 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 | 52 |
| 53 scoped_ptr<blink::WebURLLoader> url_loader_; | 53 scoped_ptr<blink::WebURLLoader> url_loader_; |
| 54 bool is_installed_; | 54 bool is_installed_; |
| 55 Callback cb_; | 55 Callback cb_; |
| 56 std::string buffer_; | 56 std::string buffer_; |
| 57 int status_code_; | 57 int status_code_; |
| 58 PP_NaClError pp_nacl_error_; | 58 PP_NaClError pp_nacl_error_; |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 } // namespace nacl | 61 } // namespace nacl |
| OLD | NEW |