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

Side by Side Diff: gpu/gles2_conform_support/native/main.cc

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 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
« no previous file with comments | « google_apis/gcm/engine/connection_handler.h ('k') | ipc/ipc_channel.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 <stddef.h> 5 #include <stddef.h>
6 6
7 #include "base/at_exit.h" 7 #include "base/at_exit.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/memory/scoped_ptr.h"
9 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
10 #if defined(OS_MACOSX) 11 #if defined(OS_MACOSX)
11 #include "base/mac/scoped_nsautorelease_pool.h" 12 #include "base/mac/scoped_nsautorelease_pool.h"
12 #endif 13 #endif
13 #if defined(OS_WIN) 14 #if defined(OS_WIN)
14 #include "base/strings/utf_string_conversions.h" 15 #include "base/strings/utf_string_conversions.h"
15 #endif 16 #endif
16 #include "ui/gl/gl_surface.h" 17 #include "ui/gl/gl_surface.h"
17 18
18 extern "C" { 19 extern "C" {
(...skipping 30 matching lines...) Expand all
49 argsArray[index+1] = args[index].c_str(); 50 argsArray[index+1] = args[index].c_str();
50 } 51 }
51 #endif 52 #endif
52 53
53 GTFMain(static_cast<int>(args.size()+1), 54 GTFMain(static_cast<int>(args.size()+1),
54 const_cast<char**>(argsArray.get())); 55 const_cast<char**>(argsArray.get()));
55 56
56 return 0; 57 return 0;
57 } 58 }
58 59
OLDNEW
« no previous file with comments | « google_apis/gcm/engine/connection_handler.h ('k') | ipc/ipc_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698