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

Side by Side Diff: ppapi/proxy/serialized_flash_menu.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 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 | « ppapi/proxy/serialized_flash_menu.h ('k') | ppapi/proxy/serialized_handle.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/serialized_flash_menu.h" 5 #include "ppapi/proxy/serialized_flash_menu.h"
6 6
7 #include <stdint.h>
8
7 #include "ipc/ipc_message.h" 9 #include "ipc/ipc_message.h"
8 #include "ppapi/c/private/ppb_flash_menu.h" 10 #include "ppapi/c/private/ppb_flash_menu.h"
9 #include "ppapi/proxy/ppapi_param_traits.h" 11 #include "ppapi/proxy/ppapi_param_traits.h"
10 12
11 namespace ppapi { 13 namespace ppapi {
12 namespace proxy { 14 namespace proxy {
13 15
14 namespace { 16 namespace {
15 // Maximum depth of submenus allowed (e.g., 1 indicates that submenus are 17 // Maximum depth of submenus allowed (e.g., 1 indicates that submenus are
16 // allowed, but not sub-submenus). 18 // allowed, but not sub-submenus).
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 pp_menu_ = ReadMenu(0, m, iter); 176 pp_menu_ = ReadMenu(0, m, iter);
175 if (!pp_menu_) 177 if (!pp_menu_)
176 return false; 178 return false;
177 179
178 own_menu_ = true; 180 own_menu_ = true;
179 return true; 181 return true;
180 } 182 }
181 183
182 } // namespace proxy 184 } // namespace proxy
183 } // namespace ppapi 185 } // namespace ppapi
OLDNEW
« no previous file with comments | « ppapi/proxy/serialized_flash_menu.h ('k') | ppapi/proxy/serialized_handle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698