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

Unified Diff: chrome/browser/signin/signin_cookie_changed_subscription.h

Issue 695553002: Account reconcilor: Use cookie store cookie changed subscription. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 6 years, 1 month 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/signin/signin_cookie_changed_subscription.h
diff --git a/chrome/browser/signin/signin_cookie_changed_subscription.h b/chrome/browser/signin/signin_cookie_changed_subscription.h
new file mode 100644
index 0000000000000000000000000000000000000000..5befe06cf02a4fadb7376b7c2e7f5fd3d66e2aa0
--- /dev/null
+++ b/chrome/browser/signin/signin_cookie_changed_subscription.h
@@ -0,0 +1,77 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_SIGNIN_SIGNIN_COOKIE_CHANGED_SUBSCRIPTION_H_
+#define CHROME_BROWSER_SIGNIN_SIGNIN_COOKIE_CHANGED_SUBSCRIPTION_H_
+
+#include "base/memory/weak_ptr.h"
+#include "base/threading/thread_checker.h"
+#include "components/signin/core/browser/signin_client.h"
+#include "net/url_request/url_request_context_getter.h"
+
+// The subscription for a cookie changed events. This class lives on the
+// main thread.
+class SigninCookieChangedSubscription
+ : public SigninClient::CookieChangedSubscription,
+ public base::SupportsWeakPtr<SigninCookieChangedSubscription> {
+ public:
+ // Creates a cookie changed subscription and registers for cookie changed
+ // events.
+ SigninCookieChangedSubscription(
+ scoped_refptr<net::URLRequestContextGetter> context_getter,
+ const GURL& url,
+ const std::string& name,
+ const net::CookieStore::CookieChangedCallback& callback);
+ ~SigninCookieChangedSubscription() override;
+
+ private:
+ // Holder of a cookie store cookie changed subscription.
+ struct SubscriptionHolder {
+ scoped_ptr<net::CookieStore::CookieChangedSubscription> subscription;
+ SubscriptionHolder();
+ ~SubscriptionHolder();
+ };
+
+ // Adds a callback for cookie changed events. This method is called on the
+ // network thread, so it is safe to access the cookie store.
+ static void RegisterForCookieChangesOnIOThread(
+ scoped_refptr<net::URLRequestContextGetter> context_getter,
+ const GURL url,
+ const std::string name,
+ const net::CookieStore::CookieChangedCallback callback,
+ SigninCookieChangedSubscription::SubscriptionHolder*
+ out_subscription_holder);
+
+ void RegisterForCookieChangedNotifications(const GURL& url,
+ const std::string& name);
+
+ // Posts a task on the |proxy| task runner that calls |OnCookieChanged| on
+ // |subscription|.
+ // Note that this method is called on the network thread, so |subscription|
+ // must not be used here, it is only passed around.
+ static void RunAsyncOnCookieChanged(
+ scoped_refptr<base::TaskRunner> proxy,
+ base::WeakPtr<SigninCookieChangedSubscription> subscription,
+ const net::CanonicalCookie& cookie,
+ bool removed);
+
+ // Handler for cookie changed events.
+ void OnCookieChanged(const net::CanonicalCookie& cookie, bool removed);
+
+ // The context getter.
+ scoped_refptr<net::URLRequestContextGetter> context_getter_;
+
+ // The holder of a cookie changed subscription. Must be destroyed on the
+ // network thread.
+ scoped_ptr<SubscriptionHolder> subscription_holder_io_;
+
+ // Callback to be run on cookie changed events.
+ net::CookieStore::CookieChangedCallback callback_;
+
+ base::ThreadChecker thread_checker_;
+
+ DISALLOW_COPY_AND_ASSIGN(SigninCookieChangedSubscription);
+};
+
+#endif // CHROME_BROWSER_SIGNIN_SIGNIN_COOKIE_CHANGED_SUBSCRIPTION_H_
« no previous file with comments | « chrome/browser/signin/chrome_signin_client.cc ('k') | chrome/browser/signin/signin_cookie_changed_subscription.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698