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

Side by Side Diff: chromeos/binder/transaction_status.cc

Issue 1540803002: Switch to standard integer types in chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years 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 | « chromeos/binder/transaction_status.h ('k') | chromeos/binder/util.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "chromeos/binder/transaction_status.h" 5 #include "chromeos/binder/transaction_status.h"
6 6
7 namespace binder { 7 namespace binder {
8 8
9 TransactionStatus::TransactionStatus(Status status) : status_(status) {} 9 TransactionStatus::TransactionStatus(Status status) : status_(status) {}
10 10
11 TransactionStatus::~TransactionStatus() {} 11 TransactionStatus::~TransactionStatus() {}
12 12
13 uintptr_t TransactionStatus::GetCookie() const { 13 uintptr_t TransactionStatus::GetCookie() const {
14 return 0; 14 return 0;
15 } 15 }
16 16
17 uint32 TransactionStatus::GetCode() const { 17 uint32_t TransactionStatus::GetCode() const {
18 return 0; 18 return 0;
19 } 19 }
20 20
21 pid_t TransactionStatus::GetSenderPID() const { 21 pid_t TransactionStatus::GetSenderPID() const {
22 return 0; 22 return 0;
23 } 23 }
24 24
25 uid_t TransactionStatus::GetSenderEUID() const { 25 uid_t TransactionStatus::GetSenderEUID() const {
26 return 0; 26 return 0;
27 } 27 }
(...skipping 20 matching lines...) Expand all
48 48
49 const uintptr_t* TransactionStatus::GetObjectOffsets() const { 49 const uintptr_t* TransactionStatus::GetObjectOffsets() const {
50 return nullptr; 50 return nullptr;
51 } 51 }
52 52
53 size_t TransactionStatus::GetNumObjectOffsets() const { 53 size_t TransactionStatus::GetNumObjectOffsets() const {
54 return 0; 54 return 0;
55 } 55 }
56 56
57 } // namespace binder 57 } // namespace binder
OLDNEW
« no previous file with comments | « chromeos/binder/transaction_status.h ('k') | chromeos/binder/util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698