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

Side by Side Diff: components/nacl/renderer/file_downloader.h

Issue 911463003: NaCl cleanup: Move ppb_nacl_private.h into components/nacl/renderer/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 5 years, 10 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/test/nacl/nacl_browsertest_uma.cc ('k') | components/nacl/renderer/histogram.h » ('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 #include <string> 5 #include <string>
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/files/file.h" 8 #include "base/files/file.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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 base::File file_; 61 base::File file_;
62 StatusCallback status_cb_; 62 StatusCallback status_cb_;
63 ProgressCallback progress_cb_; 63 ProgressCallback progress_cb_;
64 int http_status_code_; 64 int http_status_code_;
65 int64_t total_bytes_received_; 65 int64_t total_bytes_received_;
66 int64_t total_bytes_to_be_received_; 66 int64_t total_bytes_to_be_received_;
67 Status status_; 67 Status status_;
68 }; 68 };
69 69
70 } // namespace nacl 70 } // namespace nacl
OLDNEW
« no previous file with comments | « chrome/test/nacl/nacl_browsertest_uma.cc ('k') | components/nacl/renderer/histogram.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698