| Index: chrome/browser/ui/webui/edit_search_engine_dialog_ui_webui.h
|
| diff --git a/chrome/browser/ui/webui/edit_search_engine_dialog_ui_webui.h b/chrome/browser/ui/webui/edit_search_engine_dialog_ui_webui.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..315467e6003f1295d8d855622eb021e2ee0e5dc2
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/webui/edit_search_engine_dialog_ui_webui.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_WEBUI_H_
|
| +#define CHROME_BROWSER_UI_WEBUI_EDIT_SEARCH_ENGINE_DIALOG_UI_WEBUI_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_WEBUI_H_
|
|
|