Index: components/dom_distiller/webui/dom_distiller_viewer_ui.h |
diff --git a/components/dom_distiller/webui/dom_distiller_viewer_ui.h b/components/dom_distiller/webui/dom_distiller_viewer_ui.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8abab3708db7f6d0e019e3ca08689a355d6adb6e |
--- /dev/null |
+++ b/components/dom_distiller/webui/dom_distiller_viewer_ui.h |
@@ -0,0 +1,26 @@ |
+// Copyright 2013 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 COMPONENTS_DOM_DISTILLER_WEBUI_DOM_DISTILLER_VIEWER_UI_H_ |
+#define COMPONENTS_DOM_DISTILLER_WEBUI_DOM_DISTILLER_VIEWER_UI_H_ |
+ |
+#include "components/dom_distiller/webui/dom_distiller_viewer_handler.h" |
+#include "content/public/browser/web_ui_controller.h" |
+#include "content/public/browser/web_ui_data_source.h" |
+ |
+namespace dom_distiller { |
+ |
+// The WebUI controller for chrome-distiller://. |
+class DomDistillerViewerUi : public content::WebUIController { |
+ public: |
+ DomDistillerViewerUi(content::WebUI* web_ui); |
+ virtual ~DomDistillerViewerUi(); |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(DomDistillerViewerUi); |
+}; |
+ |
+} // namespace dom_distiller |
+ |
+#endif // COMPONENTS_DOM_DISTILLER_WEBUI_DOM_DISTILLER_VIEWER_UI_H_ |