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

Side by Side Diff: content/public/browser/gpu_data_manager.h

Issue 23726050: Disable WebViewTest.Shim(resize-related) tests in software compositing mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge up to r224463 Created 7 years, 3 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/browser/gpu/gpu_data_manager_impl.cc ('k') | no next file » | 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 #ifndef CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_
6 #define CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ 6 #define CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_
7 7
8 #include <list> 8 #include <list>
9 #include <string> 9 #include <string>
10 10
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 const std::string& gl_version) = 0; 90 const std::string& gl_version) = 0;
91 91
92 // Obtain collected GL strings. 92 // Obtain collected GL strings.
93 virtual void GetGLStrings(std::string* gl_vendor, 93 virtual void GetGLStrings(std::string* gl_vendor,
94 std::string* gl_renderer, 94 std::string* gl_renderer,
95 std::string* gl_version) = 0; 95 std::string* gl_version) = 0;
96 96
97 // Turn off all hardware acceleration. 97 // Turn off all hardware acceleration.
98 virtual void DisableHardwareAcceleration() = 0; 98 virtual void DisableHardwareAcceleration() = 0;
99 99
100 // Whether the browser compositor can be used.
101 virtual bool CanUseGpuBrowserCompositor() const = 0;
102
100 protected: 103 protected:
101 virtual ~GpuDataManager() {} 104 virtual ~GpuDataManager() {}
102 }; 105 };
103 106
104 }; // namespace content 107 }; // namespace content
105 108
106 #endif // CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ 109 #endif // CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_data_manager_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698