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

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

Issue 10909221: Implement blacklist's force GPU capability in dual GPU machines. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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
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 <string> 8 #include <string>
9 9
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "content/public/common/gpu_feature_type.h" 11 #include "content/public/common/gpu_feature_type.h"
12 #include "content/public/common/gpu_switching_option.h"
12 13
13 class FilePath; 14 class FilePath;
14 15
15 namespace base { 16 namespace base {
16 class ListValue; 17 class ListValue;
17 } 18 }
18 19
19 namespace content { 20 namespace content {
20 21
21 class GpuDataManagerObserver; 22 class GpuDataManagerObserver;
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 virtual void AddObserver(GpuDataManagerObserver* observer) = 0; 87 virtual void AddObserver(GpuDataManagerObserver* observer) = 0;
87 virtual void RemoveObserver(GpuDataManagerObserver* observer) = 0; 88 virtual void RemoveObserver(GpuDataManagerObserver* observer) = 0;
88 89
89 protected: 90 protected:
90 virtual ~GpuDataManager() {} 91 virtual ~GpuDataManager() {}
91 }; 92 };
92 93
93 }; // namespace content 94 }; // namespace content
94 95
95 #endif // CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_ 96 #endif // CONTENT_PUBLIC_BROWSER_GPU_DATA_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698