blob: 41fd7ead2770d6fb4ed5ecda780658307087e6aa [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
tfarinabccc34c72015-02-27 21:32:155#ifndef CONTENT_BROWSER_GPU_GPU_INTERNALS_UI_H_
6#define CONTENT_BROWSER_GPU_GPU_INTERNALS_UI_H_
[email protected]9a128b02010-12-15 00:52:007
[email protected]e14c959122012-01-13 16:58:258#include "content/public/browser/web_ui_controller.h"
[email protected]9a128b02010-12-15 00:52:009
[email protected]e1c26ae2013-01-31 18:13:1810namespace content {
11
12class GpuInternalsUI : public WebUIController {
[email protected]9a128b02010-12-15 00:52:0013 public:
[email protected]e1c26ae2013-01-31 18:13:1814 explicit GpuInternalsUI(WebUI* web_ui);
[email protected]9a128b02010-12-15 00:52:0015
16 private:
17 DISALLOW_COPY_AND_ASSIGN(GpuInternalsUI);
18};
19
[email protected]e1c26ae2013-01-31 18:13:1820} // namespace content
21
tfarinabccc34c72015-02-27 21:32:1522#endif // CONTENT_BROWSER_GPU_GPU_INTERNALS_UI_H_
[email protected]9a128b02010-12-15 00:52:0023