[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 | |||||
[email protected] | 265a149 | 2011-02-27 05:58:07 | [diff] [blame] | 5 | #ifndef CHROME_BROWSER_UI_WEBUI_GPU_INTERNALS_UI_H_ |
6 | #define CHROME_BROWSER_UI_WEBUI_GPU_INTERNALS_UI_H_ | ||||
[email protected] | 9a128b0 | 2010-12-15 00:52:00 | [diff] [blame] | 7 | #pragma once |
8 | |||||
[email protected] | 21e6caf8 | 2012-01-06 23:44:20 | [diff] [blame] | 9 | #include "content/browser/webui/web_ui.h" |
[email protected] | e14c95912 | 2012-01-13 16:58:25 | [diff] [blame^] | 10 | #include "content/public/browser/web_ui_controller.h" |
[email protected] | 9a128b0 | 2010-12-15 00:52:00 | [diff] [blame] | 11 | |
[email protected] | e14c95912 | 2012-01-13 16:58:25 | [diff] [blame^] | 12 | class GpuInternalsUI : public WebUI, public content::WebUIController { |
[email protected] | 9a128b0 | 2010-12-15 00:52:00 | [diff] [blame] | 13 | public: |
[email protected] | 0ec4898e | 2011-12-30 21:09:24 | [diff] [blame] | 14 | explicit GpuInternalsUI(content::WebContents* contents); |
[email protected] | 9a128b0 | 2010-12-15 00:52:00 | [diff] [blame] | 15 | |
16 | private: | ||||
17 | DISALLOW_COPY_AND_ASSIGN(GpuInternalsUI); | ||||
18 | }; | ||||
19 | |||||
[email protected] | 265a149 | 2011-02-27 05:58:07 | [diff] [blame] | 20 | #endif // CHROME_BROWSER_UI_WEBUI_GPU_INTERNALS_UI_H_ |
[email protected] | 9a128b0 | 2010-12-15 00:52:00 | [diff] [blame] | 21 |