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

Side by Side Diff: content/gpu/gpu_info_collector.cc

Issue 13892006: content: Update the include paths of base/string_piece.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « content/common/sandbox_mac.mm ('k') | content/gpu/gpu_info_collector_android.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 "content/gpu/gpu_info_collector.h" 5 #include "content/gpu/gpu_info_collector.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/string_number_conversions.h" 12 #include "base/string_number_conversions.h"
13 #include "base/string_piece.h" 13 #include "base/strings/string_piece.h"
14 #include "base/strings/string_split.h" 14 #include "base/strings/string_split.h"
15 #include "ui/gl/gl_bindings.h" 15 #include "ui/gl/gl_bindings.h"
16 #include "ui/gl/gl_context.h" 16 #include "ui/gl/gl_context.h"
17 #include "ui/gl/gl_surface.h" 17 #include "ui/gl/gl_surface.h"
18 18
19 namespace { 19 namespace {
20 20
21 scoped_refptr<gfx::GLSurface> InitializeGLSurface() { 21 scoped_refptr<gfx::GLSurface> InitializeGLSurface() {
22 scoped_refptr<gfx::GLSurface> surface( 22 scoped_refptr<gfx::GLSurface> surface(
23 gfx::GLSurface::CreateOffscreenGLSurface(false, gfx::Size(1, 1))); 23 gfx::GLSurface::CreateOffscreenGLSurface(false, gfx::Size(1, 1)));
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 129
130 basic_gpu_info->can_lose_context = context_gpu_info.can_lose_context; 130 basic_gpu_info->can_lose_context = context_gpu_info.can_lose_context;
131 basic_gpu_info->sandboxed = context_gpu_info.sandboxed; 131 basic_gpu_info->sandboxed = context_gpu_info.sandboxed;
132 basic_gpu_info->gpu_accessible = context_gpu_info.gpu_accessible; 132 basic_gpu_info->gpu_accessible = context_gpu_info.gpu_accessible;
133 basic_gpu_info->finalized = context_gpu_info.finalized; 133 basic_gpu_info->finalized = context_gpu_info.finalized;
134 basic_gpu_info->initialization_time = context_gpu_info.initialization_time; 134 basic_gpu_info->initialization_time = context_gpu_info.initialization_time;
135 } 135 }
136 136
137 } // namespace gpu_info_collector 137 } // namespace gpu_info_collector
138 138
OLDNEW
« no previous file with comments | « content/common/sandbox_mac.mm ('k') | content/gpu/gpu_info_collector_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698