| Index: media/base/android/cookie_getter.h
|
| diff --git a/media/base/android/cookie_getter.h b/media/base/android/cookie_getter.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e076159aba1bccd7ac012785229c0af085595e5c
|
| --- /dev/null
|
| +++ b/media/base/android/cookie_getter.h
|
| @@ -0,0 +1,29 @@
|
| +// Copyright (c) 2012 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 MEDIA_BASE_ANDROID_COOKIE_GETTER_H_
|
| +#define MEDIA_BASE_ANDROID_COOKIE_GETTER_H_
|
| +
|
| +#include <string>
|
| +
|
| +#include "base/callback.h"
|
| +
|
| +namespace media {
|
| +
|
| +// Class for asynchronously retrieving the cookies for a given URL.
|
| +class CookieGetter {
|
| + public:
|
| + typedef base::Callback<void(const std::string&)> GetCookieCB;
|
| + virtual ~CookieGetter();
|
| +
|
| + // Method for getting the cookies for a given URL.
|
| + // The callback is executed on the caller's thread.
|
| + virtual void GetCookies(const std::string& url,
|
| + const std::string& first_party_for_cookies,
|
| + const GetCookieCB& callback) = 0;
|
| +};
|
| +
|
| +} // namespace media
|
| +
|
| +#endif // MEDIA_BASE_ANDROID_COOKIE_GETTER_H_
|
|
|