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

Unified Diff: chrome/browser/ui/views/cookie_info_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/views/cookie_info_view.h
diff --git a/chrome/browser/ui/views/cookie_info_view.h b/chrome/browser/ui/views/cookie_info_view.h
index e673821eb5507da090c180b1952a456a6d53955a..f72723b66323fb6cba3fbf48cb501ee55e8a2ef8 100644
--- a/chrome/browser/ui/views/cookie_info_view.h
+++ b/chrome/browser/ui/views/cookie_info_view.h
@@ -11,7 +11,6 @@
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/string16.h"
-#include "net/cookies/cookie_monster.h"
#include "ui/base/models/combobox_model.h"
#include "ui/views/controls/combobox/combobox_listener.h"
#include "ui/views/view.h"
@@ -22,6 +21,9 @@ class Label;
class Textfield;
}
+namespace net {
+class CanonicalCookie;
+}
///////////////////////////////////////////////////////////////////////////////
// CookieInfoViewDelegate
@@ -47,7 +49,7 @@ class CookieInfoView : public views::View,
// Update the display from the specified CookieNode.
void SetCookie(const std::string& domain,
- const net::CookieMonster::CanonicalCookie& cookie_node);
+ const net::CanonicalCookie& cookie_node);
// Update the display from the specified cookie string.
void SetCookieString(const GURL& url, const std::string& cookie_line);

Powered by Google App Engine
This is Rietveld 408576698