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

Side by Side Diff: ppapi/examples/media_stream_video/media_stream_video.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 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 <GLES2/gl2.h> 5 #include <GLES2/gl2.h>
6 #include <GLES2/gl2ext.h> 6 #include <GLES2/gl2ext.h>
7 #include <stdint.h>
7 #include <string.h> 8 #include <string.h>
8 9
9 #include <vector> 10 #include <vector>
10 11
11 #include "ppapi/c/pp_errors.h" 12 #include "ppapi/c/pp_errors.h"
12 #include "ppapi/c/ppb_opengles2.h" 13 #include "ppapi/c/ppb_opengles2.h"
13 #include "ppapi/cpp/completion_callback.h" 14 #include "ppapi/cpp/completion_callback.h"
14 #include "ppapi/cpp/graphics_3d.h" 15 #include "ppapi/cpp/graphics_3d.h"
15 #include "ppapi/cpp/graphics_3d_client.h" 16 #include "ppapi/cpp/graphics_3d_client.h"
16 #include "ppapi/cpp/instance.h" 17 #include "ppapi/cpp/instance.h"
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 } 486 }
486 487
487 } // anonymous namespace 488 } // anonymous namespace
488 489
489 namespace pp { 490 namespace pp {
490 // Factory function for your specialization of the Module object. 491 // Factory function for your specialization of the Module object.
491 Module* CreateModule() { 492 Module* CreateModule() {
492 return new MediaStreamVideoModule(); 493 return new MediaStreamVideoModule();
493 } 494 }
494 } // namespace pp 495 } // namespace pp
OLDNEW
« no previous file with comments | « ppapi/examples/media_stream_audio/media_stream_audio.cc ('k') | ppapi/examples/mouse_cursor/mouse_cursor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698