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

Unified Diff: chrome/browser/profiles/profile_io_data.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/profiles/profile_io_data.cc
diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc
index 2861e3e9388507a27a995744ff463f98219a634c..494821a624d1ef5d4943b4704cd813cb8f398fea 100644
--- a/chrome/browser/profiles/profile_io_data.cc
+++ b/chrome/browser/profiles/profile_io_data.cc
@@ -52,6 +52,8 @@
#include "content/public/browser/notification_service.h"
#include "content/public/browser/resource_context.h"
#include "net/base/server_bound_cert_service.h"
+#include "net/cookies/canonical_cookie.h"
+#include "net/cookies/cookie_monster.h"
#include "net/http/http_transaction_factory.h"
#include "net/http/http_util.h"
#include "net/proxy/proxy_config_service_fixed.h"
@@ -86,7 +88,7 @@ class ChromeCookieMonsterDelegate : public net::CookieMonster::Delegate {
// net::CookieMonster::Delegate implementation.
virtual void OnCookieChanged(
- const net::CookieMonster::CanonicalCookie& cookie,
+ const net::CanonicalCookie& cookie,
bool removed,
net::CookieMonster::Delegate::ChangeCause cause) {
BrowserThread::PostTask(
@@ -99,7 +101,7 @@ class ChromeCookieMonsterDelegate : public net::CookieMonster::Delegate {
virtual ~ChromeCookieMonsterDelegate() {}
void OnCookieChangedAsyncHelper(
- const net::CookieMonster::CanonicalCookie& cookie,
+ const net::CanonicalCookie& cookie,
bool removed,
net::CookieMonster::Delegate::ChangeCause cause) {
Profile* profile = profile_getter_.Run();

Powered by Google App Engine
This is Rietveld 408576698