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

Side by Side Diff: extensions/common/extension_messages.cc

Issue 1543053002: Switch to standard integer types in extensions/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-extensions-browser
Patch Set: 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 | « extensions/common/extension_messages.h ('k') | extensions/common/extension_resource.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 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 "extensions/common/extension_messages.h" 5 #include "extensions/common/extension_messages.h"
6 6
7 #include <stddef.h>
8
7 #include "content/public/common/common_param_traits.h" 9 #include "content/public/common/common_param_traits.h"
8 #include "extensions/common/extension.h" 10 #include "extensions/common/extension.h"
9 #include "extensions/common/manifest.h" 11 #include "extensions/common/manifest.h"
10 #include "extensions/common/manifest_handler.h" 12 #include "extensions/common/manifest_handler.h"
11 #include "extensions/common/permissions/permissions_data.h" 13 #include "extensions/common/permissions/permissions_data.h"
12 #include "extensions/common/permissions/permissions_info.h" 14 #include "extensions/common/permissions/permissions_info.h"
13 15
14 using extensions::APIPermission; 16 using extensions::APIPermission;
15 using extensions::APIPermissionInfo; 17 using extensions::APIPermissionInfo;
16 using extensions::APIPermissionSet; 18 using extensions::APIPermissionSet;
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 ReadParam(m, iter, &p->active_permissions) && 328 ReadParam(m, iter, &p->active_permissions) &&
327 ReadParam(m, iter, &p->withheld_permissions); 329 ReadParam(m, iter, &p->withheld_permissions);
328 } 330 }
329 331
330 void ParamTraits<ExtensionMsg_Loaded_Params>::Log(const param_type& p, 332 void ParamTraits<ExtensionMsg_Loaded_Params>::Log(const param_type& p,
331 std::string* l) { 333 std::string* l) {
332 l->append(p.id); 334 l->append(p.id);
333 } 335 }
334 336
335 } // namespace IPC 337 } // namespace IPC
OLDNEW
« no previous file with comments | « extensions/common/extension_messages.h ('k') | extensions/common/extension_resource.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698