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

Unified Diff: content/renderer/renderer_webcookiejar_impl.h

Issue 7764014: Remove handling for the ViewHostMsg_GetCookies and ViewHostMsg_SetCookies from Chrome. These mess... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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: content/renderer/renderer_webcookiejar_impl.h
===================================================================
--- content/renderer/renderer_webcookiejar_impl.h (revision 98458)
+++ content/renderer/renderer_webcookiejar_impl.h (working copy)
@@ -15,9 +15,11 @@
class SyncMessage;
}
+class RenderView;
+
class RendererWebCookieJarImpl : public WebKit::WebCookieJar {
public:
- explicit RendererWebCookieJarImpl(IPC::Message::Sender* sender)
+ explicit RendererWebCookieJarImpl(RenderView* sender)
jam 2011/08/28 21:44:42 why is this changed?
ananta 2011/08/29 19:12:25 Restored it back to IPC::Message::Sender.
: sender_(sender) {
}
virtual ~RendererWebCookieJarImpl() {}
@@ -39,7 +41,7 @@
virtual bool cookiesEnabled(
const WebKit::WebURL& url, const WebKit::WebURL& first_party_for_cookies);
- IPC::Message::Sender* sender_;
+ RenderView* sender_;
};
#endif // CONTENT_RENDERER_RENDERER_WEBCOOKIEJAR_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698