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

Side by Side Diff: content/renderer/pepper/pepper_compositor_host.cc

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 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 "content/renderer/pepper/pepper_compositor_host.h" 5 #include "content/renderer/pepper/pepper_compositor_host.h"
6 6
7 #include <stddef.h>
8
7 #include <limits> 9 #include <limits>
8 10
9 #include "base/logging.h" 11 #include "base/logging.h"
10 #include "base/memory/shared_memory.h" 12 #include "base/memory/shared_memory.h"
11 #include "cc/blink/web_layer_impl.h" 13 #include "cc/blink/web_layer_impl.h"
12 #include "cc/layers/layer.h" 14 #include "cc/layers/layer.h"
13 #include "cc/layers/solid_color_layer.h" 15 #include "cc/layers/solid_color_layer.h"
14 #include "cc/layers/texture_layer.h" 16 #include "cc/layers/texture_layer.h"
15 #include "cc/resources/texture_mailbox.h" 17 #include "cc/resources/texture_mailbox.h"
16 #include "cc/trees/layer_tree_host.h" 18 #include "cc/trees/layer_tree_host.h"
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 408
407 // If the host is not bound to the instance, return PP_OK immediately. 409 // If the host is not bound to the instance, return PP_OK immediately.
408 if (!bound_instance_) 410 if (!bound_instance_)
409 return PP_OK; 411 return PP_OK;
410 412
411 commit_layers_reply_context_ = context->MakeReplyMessageContext(); 413 commit_layers_reply_context_ = context->MakeReplyMessageContext();
412 return PP_OK_COMPLETIONPENDING; 414 return PP_OK_COMPLETIONPENDING;
413 } 415 }
414 416
415 } // namespace content 417 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_compositor_host.h ('k') | content/renderer/pepper/pepper_device_enumeration_host_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698