blob: 66dffcd378a86a2e2be51732bc6b74215e8f394a [file] [log] [blame]
[email protected]7ade2732011-02-10 00:13:581// Copyright (c) 2011 The Chromium Authors. All rights reserved.
[email protected]9a128b02010-12-15 00:52:002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]265a1492011-02-27 05:58:075#ifndef CHROME_BROWSER_UI_WEBUI_GPU_INTERNALS_UI_H_
6#define CHROME_BROWSER_UI_WEBUI_GPU_INTERNALS_UI_H_
[email protected]9a128b02010-12-15 00:52:007#pragma once
8
[email protected]21e6caf82012-01-06 23:44:209#include "content/browser/webui/web_ui.h"
[email protected]e14c959122012-01-13 16:58:2510#include "content/public/browser/web_ui_controller.h"
[email protected]9a128b02010-12-15 00:52:0011
[email protected]e14c959122012-01-13 16:58:2512class GpuInternalsUI : public WebUI, public content::WebUIController {
[email protected]9a128b02010-12-15 00:52:0013 public:
[email protected]0ec4898e2011-12-30 21:09:2414 explicit GpuInternalsUI(content::WebContents* contents);
[email protected]9a128b02010-12-15 00:52:0015
16 private:
17 DISALLOW_COPY_AND_ASSIGN(GpuInternalsUI);
18};
19
[email protected]265a1492011-02-27 05:58:0720#endif // CHROME_BROWSER_UI_WEBUI_GPU_INTERNALS_UI_H_
[email protected]9a128b02010-12-15 00:52:0021