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

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

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.cc
diff --git a/chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc b/chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc
index b298ceaf39c5e03c52b770aa02a79b38f2690ed9..074a9a874d14a4099115077018a30357dacf5020 100644
--- a/chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc
+++ b/chrome/browser/ui/gtk/gtk_chrome_cookie_view.cc
@@ -7,6 +7,7 @@
#include "base/i18n/time_formatting.h"
#include "base/utf_string_conversions.h"
#include "grit/generated_resources.h"
+#include "net/cookies/canonical_cookie.h"
#include "net/cookies/parsed_cookie.h"
#include "ui/base/gtk/gtk_hig_constants.h"
#include "ui/base/l10n/l10n_util.h"
@@ -464,7 +465,7 @@ void gtk_chrome_cookie_view_clear(GtkChromeCookieView* self) {
void gtk_chrome_cookie_view_display_cookie(
GtkChromeCookieView* self,
const std::string& domain,
- const net::CookieMonster::CanonicalCookie& cookie) {
+ const net::CanonicalCookie& cookie) {
UpdateVisibleDetailedInfo(self, self->cookie_details_table_);
gtk_entry_set_text(GTK_ENTRY(self->cookie_name_entry_),
@@ -519,7 +520,7 @@ void gtk_chrome_cookie_view_display_cookie_string(
const GURL& url,
const std::string& cookie_line) {
net::ParsedCookie pc(cookie_line);
- net::CookieMonster::CanonicalCookie cookie(url, pc);
+ net::CanonicalCookie cookie(url, pc);
gtk_chrome_cookie_view_display_cookie(
self,

Powered by Google App Engine
This is Rietveld 408576698