summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/webui/conflicts_ui.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-27 05:58:07 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-27 05:58:07 +0000
commit265a149061df91fb2c794a877994a6b9b17c0395 (patch)
treede806aa83fd520d92ede0e06923744158e73eeaa /chrome/browser/ui/webui/conflicts_ui.h
parent4ff6ce9702a91c52892786464b15f3c8588d4070 (diff)
downloadchromium_src-265a149061df91fb2c794a877994a6b9b17c0395.zip
chromium_src-265a149061df91fb2c794a877994a6b9b17c0395.tar.gz
chromium_src-265a149061df91fb2c794a877994a6b9b17c0395.tar.bz2
WebUI: Move more files from chrome/browser/webui to chrome/browser/ui/webui.
I'm moving the files I have found with: $ ls chrome/browser/webui | grep _ui BUG=59946 TEST=trybots Review URL: http://codereview.chromium.org/6599024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76183 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/webui/conflicts_ui.h')
-rw-r--r--chrome/browser/ui/webui/conflicts_ui.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/chrome/browser/ui/webui/conflicts_ui.h b/chrome/browser/ui/webui/conflicts_ui.h
new file mode 100644
index 0000000..3e05ccf
--- /dev/null
+++ b/chrome/browser/ui/webui/conflicts_ui.h
@@ -0,0 +1,28 @@
+// 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_CONFLICTS_UI_H_
+#define CHROME_BROWSER_UI_WEBUI_CONFLICTS_UI_H_
+#pragma once
+
+#include "content/browser/webui/web_ui.h"
+
+#if defined(OS_WIN)
+
+class RefCountedMemory;
+
+// The Web UI handler for about:conflicts.
+class ConflictsUI : public WebUI {
+ public:
+ explicit ConflictsUI(TabContents* contents);
+
+ static RefCountedMemory* GetFaviconResourceBytes();
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ConflictsUI);
+};
+
+#endif
+
+#endif // CHROME_BROWSER_UI_WEBUI_CONFLICTS_UI_H_