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

Side by Side Diff: ppapi/proxy/proxy_channel.cc

Issue 1548813002: Switch to standard integer types in ppapi/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes 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
« no previous file with comments | « ppapi/proxy/proxy_channel.h ('k') | ppapi/proxy/proxy_completion_callback_factory.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "ppapi/proxy/proxy_channel.h" 5 #include "ppapi/proxy/proxy_channel.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "build/build_config.h"
8 #include "ipc/ipc_platform_file.h" 9 #include "ipc/ipc_platform_file.h"
9 #include "ipc/ipc_test_sink.h" 10 #include "ipc/ipc_test_sink.h"
10 11
11 #if defined(OS_NACL) 12 #if defined(OS_NACL)
12 #include <unistd.h> 13 #include <unistd.h>
13 #endif 14 #endif
14 15
15 namespace ppapi { 16 namespace ppapi {
16 namespace proxy { 17 namespace proxy {
17 18
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 if (channel_.get()) 90 if (channel_.get())
90 return channel_->Send(msg); 91 return channel_->Send(msg);
91 92
92 // Remote side crashed, drop this message. 93 // Remote side crashed, drop this message.
93 delete msg; 94 delete msg;
94 return false; 95 return false;
95 } 96 }
96 97
97 } // namespace proxy 98 } // namespace proxy
98 } // namespace ppapi 99 } // namespace ppapi
OLDNEW
« no previous file with comments | « ppapi/proxy/proxy_channel.h ('k') | ppapi/proxy/proxy_completion_callback_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698