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

Unified Diff: chrome_frame/plugin_url_request.h

Issue 102763005: Remove the ChromeFrame specific cookie code between the renderer and browser process. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years 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 | « chrome_frame/chrome_frame_delegate.cc ('k') | chrome_frame/test/automation_client_mock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/plugin_url_request.h
===================================================================
--- chrome_frame/plugin_url_request.h (revision 240900)
+++ chrome_frame/plugin_url_request.h (working copy)
@@ -36,9 +36,6 @@
virtual void AddPrivacyDataForUrl(const std::string& url,
const std::string& policy_ref,
int32 flags) {}
- virtual void OnCookiesRetrieved(bool success, const GURL& url,
- const std::string& cookie_string,
- int cookie_id) = 0;
protected:
PluginUrlRequestDelegate() {}
~PluginUrlRequestDelegate() {}
@@ -92,14 +89,6 @@
StopAll();
}
- void GetCookiesFromHost(const GURL& url, int cookie_id) {
- GetCookiesForUrl(url, cookie_id);
- }
-
- void SetCookiesInHost(const GURL& url, const std::string& cookie) {
- SetCookiesForUrl(url, cookie);
- }
-
protected:
PluginUrlRequestDelegate* delegate_;
bool enable_frame_busting_;
@@ -111,8 +100,6 @@
virtual void EndRequest(int request_id) = 0;
virtual void DownloadRequestInHost(int request_id) = 0;
virtual void StopAll() = 0;
- virtual void GetCookiesForUrl(const GURL& url, int cookie_id) = 0;
- virtual void SetCookiesForUrl(const GURL& url, const std::string& cookie) = 0;
};
// Used as base class. Holds Url request properties (url, method, referrer..)
« no previous file with comments | « chrome_frame/chrome_frame_delegate.cc ('k') | chrome_frame/test/automation_client_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698