summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-19 17:54:21 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-19 17:54:21 +0000
commit903226b51dbba87492e2dac5405f82f5b3947f6d (patch)
treedbf99f83e071edab94be77450d2c2b18390f9320
parentf570bb263968348366860a6ed154745789b8a2d7 (diff)
downloadchromium_src-903226b51dbba87492e2dac5405f82f5b3947f6d.zip
chromium_src-903226b51dbba87492e2dac5405f82f5b3947f6d.tar.gz
chromium_src-903226b51dbba87492e2dac5405f82f5b3947f6d.tar.bz2
views: Remove three functions that are unnecessary now.
The dialogs were removed in some past cleanup so we don't need and we don't implement these functions anymore. BUG=None TEST=None R=jhawkins@chromium.org,akalin@chromium.org Review URL: http://codereview.chromium.org/6713061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78831 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/ui/views/browser_dialogs.h19
1 files changed, 2 insertions, 17 deletions
diff --git a/chrome/browser/ui/views/browser_dialogs.h b/chrome/browser/ui/views/browser_dialogs.h
index 295aeec..2bd98df 100644
--- a/chrome/browser/ui/views/browser_dialogs.h
+++ b/chrome/browser/ui/views/browser_dialogs.h
@@ -8,7 +8,6 @@
#include <string>
-#include "chrome/common/content_settings_types.h"
#include "ui/gfx/native_widget_types.h"
// This file contains functions for running a variety of browser dialogs and
@@ -18,11 +17,9 @@
// TODO: Make as many of these methods as possible cross platform, and move them
// into chrome/browser/ui/browser_dialogs.h.
-class Browser;
class BrowserView;
class EditSearchEngineControllerDelegate;
class Extension;
-class FilePath;
class FindBar;
class GURL;
class InfoBubbleDelegate;
@@ -33,20 +30,14 @@ class TemplateURL;
namespace gfx {
class Rect;
class Size;
-} // namespace gfx
+}
namespace views {
-class Widget;
class Window;
-} // namespace views
+}
namespace browser {
-// Shows the "Report a problem with this page" dialog box. See BugReportView.
-void ShowBugReportView(views::Window* parent,
- Profile* profile,
- TabContents* tab);
-
// Shows or hides the global bookmark bubble for the star button.
void ShowBookmarkBubbleView(views::Window* parent,
const gfx::Rect& bounds,
@@ -57,9 +48,6 @@ void ShowBookmarkBubbleView(views::Window* parent,
void HideBookmarkBubbleView();
bool IsBookmarkBubbleViewShowing();
-// Shows the bookmark manager.
-void ShowBookmarkManagerView(Profile* profile);
-
// Shows the about dialog. See AboutChromeView.
views::Window* ShowAboutChromeView(gfx::NativeWindow parent,
Profile* profile);
@@ -67,9 +55,6 @@ views::Window* ShowAboutChromeView(gfx::NativeWindow parent,
// Creates and returns a find bar for the given browser window. See FindBarWin.
FindBar* CreateFindBar(BrowserView* browser_view);
-// Shows the keyword editor. See KeywordEditorView.
-void ShowKeywordEditorView(Profile* profile);
-
// Shows the Task Manager.
void ShowTaskManager();