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

Side by Side Diff: ppapi/proxy/ppb_flash_message_loop_proxy.h

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/ppb_core_proxy.cc ('k') | ppapi/proxy/ppb_flash_message_loop_proxy.cc » ('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 #ifndef PPAPI_PPB_FLASH_MESSAGE_LOOP_PROXY_H_ 5 #ifndef PPAPI_PPB_FLASH_MESSAGE_LOOP_PROXY_H_
6 #define PPAPI_PPB_FLASH_MESSAGE_LOOP_PROXY_H_ 6 #define PPAPI_PPB_FLASH_MESSAGE_LOOP_PROXY_H_
7 7
8 #include "base/basictypes.h" 8 #include <stdint.h>
9
9 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
11 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
12 #include "ppapi/c/pp_instance.h" 14 #include "ppapi/c/pp_instance.h"
13 #include "ppapi/c/pp_resource.h" 15 #include "ppapi/c/pp_resource.h"
14 #include "ppapi/proxy/interface_proxy.h" 16 #include "ppapi/proxy/interface_proxy.h"
15 17
16 namespace IPC { 18 namespace IPC {
17 class Message; 19 class Message;
18 } 20 }
19 21
(...skipping 25 matching lines...) Expand all
45 47
46 void WillQuitSoon(scoped_ptr<IPC::Message> reply_message, int32_t result); 48 void WillQuitSoon(scoped_ptr<IPC::Message> reply_message, int32_t result);
47 49
48 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_MessageLoop_Proxy); 50 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_MessageLoop_Proxy);
49 }; 51 };
50 52
51 } // namespace proxy 53 } // namespace proxy
52 } // namespace ppapi 54 } // namespace ppapi
53 55
54 #endif // PPAPI_PPB_FLASH_MESSAGE_LOOP_PROXY_H_ 56 #endif // PPAPI_PPB_FLASH_MESSAGE_LOOP_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_core_proxy.cc ('k') | ppapi/proxy/ppb_flash_message_loop_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698