Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7765)

Unified Diff: chrome/browser/ui/gtk/gtk_chrome_cookie_view.h

Issue 10785017: Move CanonicalCookie into separate files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing include Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/gtk/gtk_chrome_cookie_view.h
diff --git a/chrome/browser/ui/gtk/gtk_chrome_cookie_view.h b/chrome/browser/ui/gtk/gtk_chrome_cookie_view.h
index 51564fdce2a6bf4c7bbaf4b07675d9d697b0421f..2f72490789f127974330f379d90ae0ac3e0fcbab 100644
--- a/chrome/browser/ui/gtk/gtk_chrome_cookie_view.h
+++ b/chrome/browser/ui/gtk/gtk_chrome_cookie_view.h
@@ -13,10 +13,13 @@
#include "chrome/browser/browsing_data_database_helper.h"
#include "chrome/browser/browsing_data_indexed_db_helper.h"
#include "chrome/browser/browsing_data_local_storage_helper.h"
-#include "net/cookies/cookie_monster.h"
class GURL;
+namespace net {
+class CanonicalCookie;
+}
+
G_BEGIN_DECLS
#define GTK_TYPE_CHROME_COOKIE_VIEW gtk_chrome_cookie_view_get_type()
@@ -139,7 +142,7 @@ G_END_DECLS
void gtk_chrome_cookie_view_display_cookie(
GtkChromeCookieView* widget,
const std::string& domain,
- const net::CookieMonster::CanonicalCookie& cookie);
+ const net::CanonicalCookie& cookie);
// Looks up the cookie_line in CookieMonster and displays that.
void gtk_chrome_cookie_view_display_cookie_string(

Powered by Google App Engine
This is Rietveld 408576698