[email protected] | 7ade273 | 2011-02-10 00:13:58 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
[email protected] | 9a128b0 | 2010-12-15 00:52:00 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
tfarina | bccc34c7 | 2015-02-27 21:32:15 | [diff] [blame] | 5 | #ifndef CONTENT_BROWSER_GPU_GPU_INTERNALS_UI_H_ |
6 | #define CONTENT_BROWSER_GPU_GPU_INTERNALS_UI_H_ | ||||
[email protected] | 9a128b0 | 2010-12-15 00:52:00 | [diff] [blame] | 7 | |
[email protected] | e14c95912 | 2012-01-13 16:58:25 | [diff] [blame] | 8 | #include "content/public/browser/web_ui_controller.h" |
[email protected] | 9a128b0 | 2010-12-15 00:52:00 | [diff] [blame] | 9 | |
[email protected] | e1c26ae | 2013-01-31 18:13:18 | [diff] [blame] | 10 | namespace content { |
11 | |||||
12 | class GpuInternalsUI : public WebUIController { | ||||
[email protected] | 9a128b0 | 2010-12-15 00:52:00 | [diff] [blame] | 13 | public: |
[email protected] | e1c26ae | 2013-01-31 18:13:18 | [diff] [blame] | 14 | explicit GpuInternalsUI(WebUI* web_ui); |
[email protected] | 9a128b0 | 2010-12-15 00:52:00 | [diff] [blame] | 15 | |
16 | private: | ||||
17 | DISALLOW_COPY_AND_ASSIGN(GpuInternalsUI); | ||||
18 | }; | ||||
19 | |||||
[email protected] | e1c26ae | 2013-01-31 18:13:18 | [diff] [blame] | 20 | } // namespace content |
21 | |||||
tfarina | bccc34c7 | 2015-02-27 21:32:15 | [diff] [blame] | 22 | #endif // CONTENT_BROWSER_GPU_GPU_INTERNALS_UI_H_ |
[email protected] | 9a128b0 | 2010-12-15 00:52:00 | [diff] [blame] | 23 |