summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-19 16:48:18 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-19 16:48:18 +0000
commit218270bb92ca7ec72c4373c44c71d9872b557b32 (patch)
treefd6aed794942a8fbe58759949256df49cbc2567f /content
parentb08bd73ea5e7de0a09dd4676271683b564d01bde (diff)
downloadchromium_src-218270bb92ca7ec72c4373c44c71d9872b557b32.zip
chromium_src-218270bb92ca7ec72c4373c44c71d9872b557b32.tar.gz
chromium_src-218270bb92ca7ec72c4373c44c71d9872b557b32.tar.bz2
Remove ShowCollectedCookiesDialog from TabContentsDelegate, since content layer shouldn't have to know about this Chrome feature.
BUG=76697 Review URL: http://codereview.chromium.org/7039053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85923 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r--content/browser/tab_contents/tab_contents_delegate.cc4
-rw-r--r--content/browser/tab_contents/tab_contents_delegate.h3
2 files changed, 0 insertions, 7 deletions
diff --git a/content/browser/tab_contents/tab_contents_delegate.cc b/content/browser/tab_contents/tab_contents_delegate.cc
index 571b57e..d63c823 100644
--- a/content/browser/tab_contents/tab_contents_delegate.cc
+++ b/content/browser/tab_contents/tab_contents_delegate.cc
@@ -151,10 +151,6 @@ void TabContentsDelegate::ShowRepostFormWarningDialog(
TabContents* tab_contents) {
}
-void TabContentsDelegate::ShowCollectedCookiesDialog(
- TabContents* tab_contents) {
-}
-
bool TabContentsDelegate::OnGoToEntryOffset(int offset) {
return true;
}
diff --git a/content/browser/tab_contents/tab_contents_delegate.h b/content/browser/tab_contents/tab_contents_delegate.h
index b28c77a..ca23897 100644
--- a/content/browser/tab_contents/tab_contents_delegate.h
+++ b/content/browser/tab_contents/tab_contents_delegate.h
@@ -240,9 +240,6 @@ class TabContentsDelegate {
// Shows the repost form confirmation dialog box.
virtual void ShowRepostFormWarningDialog(TabContents* tab_contents);
- // Shows the cookies collected in the tab contents.
- virtual void ShowCollectedCookiesDialog(TabContents* tab_contents);
-
// Allows delegate to override navigation to the history entries.
// Returns true to allow TabContents to continue with the default processing.
virtual bool OnGoToEntryOffset(int offset);