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

Side by Side Diff: content/renderer/pepper/message_channel.h

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 (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 CONTENT_RENDERER_PEPPER_MESSAGE_CHANNEL_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_MESSAGE_CHANNEL_H_
6 #define CONTENT_RENDERER_PEPPER_MESSAGE_CHANNEL_H_ 6 #define CONTENT_RENDERER_PEPPER_MESSAGE_CHANNEL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <list> 9 #include <list>
10 #include <map> 10 #include <map>
11 11
12 #include "base/basictypes.h" 12 #include "base/macros.h"
13 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
14 #include "content/renderer/pepper/v8_var_converter.h" 14 #include "content/renderer/pepper/v8_var_converter.h"
15 #include "gin/handle.h" 15 #include "gin/handle.h"
16 #include "gin/interceptor.h" 16 #include "gin/interceptor.h"
17 #include "gin/wrappable.h" 17 #include "gin/wrappable.h"
18 #include "ppapi/proxy/host_dispatcher.h" 18 #include "ppapi/proxy/host_dispatcher.h"
19 #include "ppapi/shared_impl/resource.h" 19 #include "ppapi/shared_impl/resource.h"
20 #include "third_party/WebKit/public/web/WebSerializedScriptValue.h" 20 #include "third_party/WebKit/public/web/WebSerializedScriptValue.h"
21 #include "v8/include/v8-util.h" 21 #include "v8/include/v8-util.h"
22 #include "v8/include/v8.h" 22 #include "v8/include/v8.h"
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 // This is used to ensure pending tasks will not fire after this object is 201 // This is used to ensure pending tasks will not fire after this object is
202 // destroyed. 202 // destroyed.
203 base::WeakPtrFactory<MessageChannel> weak_ptr_factory_; 203 base::WeakPtrFactory<MessageChannel> weak_ptr_factory_;
204 204
205 DISALLOW_COPY_AND_ASSIGN(MessageChannel); 205 DISALLOW_COPY_AND_ASSIGN(MessageChannel);
206 }; 206 };
207 207
208 } // namespace content 208 } // namespace content
209 209
210 #endif // CONTENT_RENDERER_PEPPER_MESSAGE_CHANNEL_H_ 210 #endif // CONTENT_RENDERER_PEPPER_MESSAGE_CHANNEL_H_
OLDNEW
« no previous file with comments | « content/renderer/pepper/host_var_tracker_unittest.cc ('k') | content/renderer/pepper/mock_renderer_ppapi_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698