Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3126)

Unified Diff: chrome/browser/ui/webui/polymer_flags_ui.h

Issue 1223793018: Fake MD Flags sample WebUI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698