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

Side by Side Diff: gpu/command_buffer/service/feature_info.cc

Issue 1542513002: Switch to standard integer types in gpu/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years 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 (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 "gpu/command_buffer/service/feature_info.h" 5 #include "gpu/command_buffer/service/feature_info.h"
6 6
7 #include <stddef.h>
8
7 #include <set> 9 #include <set>
8 #include <vector> 10 #include <vector>
9 11
10 #include "base/command_line.h" 12 #include "base/command_line.h"
11 #include "base/metrics/histogram_macros.h" 13 #include "base/metrics/histogram_macros.h"
12 #include "base/strings/string_number_conversions.h" 14 #include "base/strings/string_number_conversions.h"
13 #include "base/strings/string_split.h" 15 #include "base/strings/string_split.h"
14 #include "gpu/command_buffer/service/gpu_switches.h" 16 #include "gpu/command_buffer/service/gpu_switches.h"
15 #include "gpu/command_buffer/service/texture_definition.h" 17 #include "gpu/command_buffer/service/texture_definition.h"
16 #include "gpu/config/gpu_switches.h" 18 #include "gpu/config/gpu_switches.h"
(...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after
1332 if (pos == std::string::npos) { 1334 if (pos == std::string::npos) {
1333 extensions_ += (extensions_.empty() ? "" : " ") + str; 1335 extensions_ += (extensions_.empty() ? "" : " ") + str;
1334 } 1336 }
1335 } 1337 }
1336 1338
1337 FeatureInfo::~FeatureInfo() { 1339 FeatureInfo::~FeatureInfo() {
1338 } 1340 }
1339 1341
1340 } // namespace gles2 1342 } // namespace gles2
1341 } // namespace gpu 1343 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/error_state_mock.h ('k') | gpu/command_buffer/service/feature_info_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698