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

Unified Diff: media/base/android/cookie_getter.h

Issue 12595005: Parsing filesystem url before giving it to media player (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase change Created 7 years, 9 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
« no previous file with comments | « content/renderer/media/webmediaplayer_proxy_impl_android.cc ('k') | media/base/android/cookie_getter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/android/cookie_getter.h
diff --git a/media/base/android/cookie_getter.h b/media/base/android/cookie_getter.h
deleted file mode 100644
index bf7cc55d7fe21e1ed570c3d2a78cfd9adec04d1a..0000000000000000000000000000000000000000
--- a/media/base/android/cookie_getter.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// 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"
-#include "media/base/media_export.h"
-
-namespace media {
-
-// Class for asynchronously retrieving the cookies for a given URL.
-class MEDIA_EXPORT 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_
« no previous file with comments | « content/renderer/media/webmediaplayer_proxy_impl_android.cc ('k') | media/base/android/cookie_getter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698