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

Side by Side Diff: ppapi/examples/gamepad/gamepad.cc

Issue 32343005: Add missing #includes of <algorithm> in ppapi for std::min/max (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/examples/2d/scroll.cc ('k') | ppapi/examples/ime/ime.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 (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 <algorithm>
5 #include <cmath> 6 #include <cmath>
6 #include <stdarg.h> 7 #include <stdarg.h>
7 #include <stdio.h> 8 #include <stdio.h>
8 9
9 #include "ppapi/c/ppb_gamepad.h" 10 #include "ppapi/c/ppb_gamepad.h"
10 #include "ppapi/c/ppb_input_event.h" 11 #include "ppapi/c/ppb_input_event.h"
11 #include "ppapi/cpp/completion_callback.h" 12 #include "ppapi/cpp/completion_callback.h"
12 #include "ppapi/cpp/graphics_2d.h" 13 #include "ppapi/cpp/graphics_2d.h"
13 #include "ppapi/cpp/image_data.h" 14 #include "ppapi/cpp/image_data.h"
14 #include "ppapi/cpp/input_event.h" 15 #include "ppapi/cpp/input_event.h"
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 141
141 namespace pp { 142 namespace pp {
142 143
143 // Factory function for your specialization of the Module object. 144 // Factory function for your specialization of the Module object.
144 Module* CreateModule() { 145 Module* CreateModule() {
145 return new MyModule(); 146 return new MyModule();
146 } 147 }
147 148
148 } // namespace pp 149 } // namespace pp
149 150
OLDNEW
« no previous file with comments | « ppapi/examples/2d/scroll.cc ('k') | ppapi/examples/ime/ime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698