summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/options/cookies_view.h
diff options
context:
space:
mode:
authormattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-30 20:56:17 +0000
committermattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-30 20:56:17 +0000
commitb5a2209a89eb1569f28223889bb3f1960619bb8a (patch)
treec96c26f02c9b7cea91bae5053cc0e257e430fccf /chrome/browser/gtk/options/cookies_view.h
parent3e2bfcf0ae9e0e81c091294460fdbeaef51f47ad (diff)
downloadchromium_src-b5a2209a89eb1569f28223889bb3f1960619bb8a.zip
chromium_src-b5a2209a89eb1569f28223889bb3f1960619bb8a.tar.gz
chromium_src-b5a2209a89eb1569f28223889bb3f1960619bb8a.tar.bz2
Revert "Add unittest for Gtk cookie manager."
This reverts commit 91bd4c1a4703db44ea45852bf2f62822e1ded743, which caused valgrind errors. TBR=erg git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22093 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/options/cookies_view.h')
-rw-r--r--chrome/browser/gtk/options/cookies_view.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/chrome/browser/gtk/options/cookies_view.h b/chrome/browser/gtk/options/cookies_view.h
index 2c3ad51..3401e4a 100644
--- a/chrome/browser/gtk/options/cookies_view.h
+++ b/chrome/browser/gtk/options/cookies_view.h
@@ -11,10 +11,8 @@
#include "base/basictypes.h"
#include "base/scoped_ptr.h"
#include "base/task.h"
-#include "testing/gtest/include/gtest/gtest_prod.h"
class CookiesTableModel;
-class CookiesViewTest;
class Profile;
class CookiesView : public TableModelObserver {
@@ -25,14 +23,6 @@ class CookiesView : public TableModelObserver {
static void Show(Profile* profile);
private:
- // Column ids for |list_store_|.
- enum {
- COL_ICON,
- COL_SITE,
- COL_COOKIE_NAME,
- COL_COUNT,
- };
-
explicit CookiesView(Profile* profile);
// Initialize the dialog contents and layout.
@@ -130,17 +120,6 @@ class CookiesView : public TableModelObserver {
// re-evaluate the model after the search query string changes.
ScopedRunnableMethodFactory<CookiesView> filter_update_factory_;
- friend class CookiesViewTest;
- FRIEND_TEST(CookiesViewTest, TestEmpty);
- FRIEND_TEST(CookiesViewTest, TestRemoveAll);
- FRIEND_TEST(CookiesViewTest, TestRemove);
- FRIEND_TEST(CookiesViewTest, TestFilter);
- FRIEND_TEST(CookiesViewTest, TestFilterRemoveAll);
- FRIEND_TEST(CookiesViewTest, TestFilterRemove);
- FRIEND_TEST(CookiesViewTest, TestSort);
- FRIEND_TEST(CookiesViewTest, TestSortRemove);
- FRIEND_TEST(CookiesViewTest, TestSortFilterRemove);
-
DISALLOW_COPY_AND_ASSIGN(CookiesView);
};