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

Side by Side Diff: content/common/gpu/client/gl_helper_unittest.cc

Issue 1544273002: Switch to standard integer types in content/. (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 <stddef.h> 5 #include <stddef.h>
6 #include <stdint.h> 6 #include <stdint.h>
7 #include <stdio.h> 7 #include <stdio.h>
8 #include <string.h>
8 #include <cmath> 9 #include <cmath>
9 #include <string> 10 #include <string>
10 #include <vector> 11 #include <vector>
11 12
12 #include <GLES2/gl2.h> 13 #include <GLES2/gl2.h>
13 #include <GLES2/gl2ext.h> 14 #include <GLES2/gl2ext.h>
14 #include <GLES2/gl2extchromium.h> 15 #include <GLES2/gl2extchromium.h>
15 16
16 #include "base/at_exit.h" 17 #include "base/at_exit.h"
17 #include "base/bind.h" 18 #include "base/bind.h"
(...skipping 1984 matching lines...) Expand 10 before | Expand all | Expand 10 after
2002 base::TestSuite* suite = new content::ContentTestSuite(argc, argv); 2003 base::TestSuite* suite = new content::ContentTestSuite(argc, argv);
2003 #if defined(OS_MACOSX) 2004 #if defined(OS_MACOSX)
2004 base::mac::ScopedNSAutoreleasePool pool; 2005 base::mac::ScopedNSAutoreleasePool pool;
2005 #endif 2006 #endif
2006 2007
2007 return base::LaunchUnitTestsSerially( 2008 return base::LaunchUnitTestsSerially(
2008 argc, 2009 argc,
2009 argv, 2010 argv,
2010 base::Bind(&RunHelper, base::Unretained(suite))); 2011 base::Bind(&RunHelper, base::Unretained(suite)));
2011 } 2012 }
OLDNEW
« no previous file with comments | « content/common/font_list_win.cc ('k') | content/common/gpu/client/grcontext_for_webgraphicscontext3d.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698