Chromium Code Reviews| Index: content/public/browser/gpu_data_manager.h |
| =================================================================== |
| --- content/public/browser/gpu_data_manager.h (revision 156701) |
| +++ content/public/browser/gpu_data_manager.h (working copy) |
| @@ -30,12 +30,10 @@ |
| // This collects preliminary GPU info, load GpuBlacklist, and compute the |
| // preliminary blacklisted features; it should only be called at browser |
| // startup time in UI thread before the IO restriction is turned on. |
| - virtual void Initialize(const std::string& browser_version_string, |
| - const std::string& gpu_blacklist_json) = 0; |
| + virtual void Initialize() = 0; |
|
jam
2012/09/20 19:31:54
this can be taken out of the public API, since it'
Zhenyao Mo
2012/09/20 21:24:03
Done.
|
| // The same as above, except that the GPUInfo is provided. |
| // For testing only. |
| - virtual void Initialize(const std::string& browser_version_string, |
| - const std::string& gpu_blacklist_json, |
| + virtual void Initialize(const std::string& gpu_blacklist_json, |
|
jam
2012/09/20 19:31:54
nit: while you're changing the callsites, if this
Zhenyao Mo
2012/09/20 21:24:03
Done.
|
| const content::GPUInfo& gpu_info) = 0; |
| virtual std::string GetBlacklistVersion() const = 0; |