| Index: chrome/browser/ui/webui/polymer_flags_ui.h
|
| diff --git a/chrome/browser/ui/webui/polymer_flags_ui.h b/chrome/browser/ui/webui/polymer_flags_ui.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1c3a2f573cbbd0575fda38ae1bb5dea451b5f5b5
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/webui/polymer_flags_ui.h
|
| @@ -0,0 +1,20 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CHROME_BROWSER_UI_WEBUI_POLYMER_FLAGS_UI_H_
|
| +#define CHROME_BROWSER_UI_WEBUI_POLYMER_FLAGS_UI_H_
|
| +
|
| +#include "content/public/browser/web_ui_controller.h"
|
| +
|
| +// The WebUI handler for chrome://polymer-flags.
|
| +class PolymerFlagsUI : public content::WebUIController {
|
| + public:
|
| + explicit PolymerFlagsUI(content::WebUI* web_ui);
|
| + ~PolymerFlagsUI() override;
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(PolymerFlagsUI);
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_UI_WEBUI_POLYMER_FLAGS_UI_H_
|
|
|