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

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

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 4 years, 12 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 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 <stdint.h>
6
5 #include <string> 7 #include <string>
6 8
7 #include "base/callback.h" 9 #include "base/callback.h"
8 #include "base/files/file.h" 10 #include "base/files/file.h"
9 #include "components/nacl/renderer/ppb_nacl_private.h" 11 #include "components/nacl/renderer/ppb_nacl_private.h"
10 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" 12 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h"
11 13
12 namespace blink { 14 namespace blink {
13 struct WebURLError; 15 struct WebURLError;
14 class WebURLLoader; 16 class WebURLLoader;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 base::File file_; 63 base::File file_;
62 StatusCallback status_cb_; 64 StatusCallback status_cb_;
63 ProgressCallback progress_cb_; 65 ProgressCallback progress_cb_;
64 int http_status_code_; 66 int http_status_code_;
65 int64_t total_bytes_received_; 67 int64_t total_bytes_received_;
66 int64_t total_bytes_to_be_received_; 68 int64_t total_bytes_to_be_received_;
67 Status status_; 69 Status status_;
68 }; 70 };
69 71
70 } // namespace nacl 72 } // namespace nacl
OLDNEW
« no previous file with comments | « components/nacl/loader/sandbox_linux/nacl_sandbox_linux.cc ('k') | components/nacl/renderer/histogram.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698