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

Side by Side Diff: content/browser/gpu/gpu_data_manager_impl.h

Issue 665123002: [DevTools] Move SystemInfo domain to generated handler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@browserProtocol
Patch Set: Rebased Created 6 years, 1 month 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 | « content/browser/gpu/compositor_util.cc ('k') | content/browser/gpu/gpu_data_manager_impl.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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_H_ 5 #ifndef CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_H_
6 #define CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_H_ 6 #define CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 113
114 std::string GetBlacklistVersion() const; 114 std::string GetBlacklistVersion() const;
115 std::string GetDriverBugListVersion() const; 115 std::string GetDriverBugListVersion() const;
116 116
117 // Returns the reasons for the latest run of blacklisting decisions. 117 // Returns the reasons for the latest run of blacklisting decisions.
118 // For the structure of returned value, see documentation for 118 // For the structure of returned value, see documentation for
119 // GpuBlacklist::GetBlacklistedReasons(). 119 // GpuBlacklist::GetBlacklistedReasons().
120 void GetBlacklistReasons(base::ListValue* reasons) const; 120 void GetBlacklistReasons(base::ListValue* reasons) const;
121 121
122 // Returns the workarounds that are applied to the current system as 122 // Returns the workarounds that are applied to the current system as
123 // a list of strings. 123 // a vector of strings.
124 void GetDriverBugWorkarounds(base::ListValue* workarounds) const; 124 std::vector<std::string> GetDriverBugWorkarounds() const;
125 125
126 void AddLogMessage(int level, 126 void AddLogMessage(int level,
127 const std::string& header, 127 const std::string& header,
128 const std::string& message); 128 const std::string& message);
129 129
130 void ProcessCrashed(base::TerminationStatus exit_code); 130 void ProcessCrashed(base::TerminationStatus exit_code);
131 131
132 // Returns a new copy of the ListValue. Caller is responsible to release 132 // Returns a new copy of the ListValue. Caller is responsible to release
133 // the returned value. 133 // the returned value.
134 base::ListValue* GetLogMessages() const; 134 base::ListValue* GetLogMessages() const;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 210
211 mutable base::Lock lock_; 211 mutable base::Lock lock_;
212 scoped_ptr<GpuDataManagerImplPrivate> private_; 212 scoped_ptr<GpuDataManagerImplPrivate> private_;
213 213
214 DISALLOW_COPY_AND_ASSIGN(GpuDataManagerImpl); 214 DISALLOW_COPY_AND_ASSIGN(GpuDataManagerImpl);
215 }; 215 };
216 216
217 } // namespace content 217 } // namespace content
218 218
219 #endif // CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_H_ 219 #endif // CONTENT_BROWSER_GPU_GPU_DATA_MANAGER_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/gpu/compositor_util.cc ('k') | content/browser/gpu/gpu_data_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698