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

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

Issue 8118012: WebUI Edit Search Engine Dialog (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: self review Created 9 years, 2 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/edit_search_engine_dialog_ui.h
diff --git a/chrome/browser/ui/webui/edit_search_engine_dialog_ui.h b/chrome/browser/ui/webui/edit_search_engine_dialog_ui.h
new file mode 100644
index 0000000000000000000000000000000000000000..7218c448976b0a36b415cd75dd4e7d675f36098f
--- /dev/null
+++ b/chrome/browser/ui/webui/edit_search_engine_dialog_ui.h
@@ -0,0 +1,22 @@
+// Copyright (c) 2011 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_EDIT_SEARCH_ENGINE_DIALOG_UI_H_
+#define CHROME_BROWSER_UI_WEBUI_EDIT_SEARCH_ENGINE_DIALOG_UI_H_
+#pragma once
+
+#include "base/values.h"
+#include "chrome/browser/ui/webui/html_dialog_ui.h"
+
+// The WebUI for chrome://editsearchengine
+class EditSearchEngineDialogUI : public HtmlDialogUI {
+ public:
+ explicit EditSearchEngineDialogUI(TabContents* contents);
+ virtual ~EditSearchEngineDialogUI();
+
+ protected:
+ DISALLOW_COPY_AND_ASSIGN(EditSearchEngineDialogUI);
+};
+
+#endif // CHROME_BROWSER_UI_WEBUI_EDIT_SEARCH_ENGINE_DIALOG_UI_H_

Powered by Google App Engine
This is Rietveld 408576698