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

Unified Diff: webkit/api/public/WebKitClient.h

Issue 294025: DevTools: Implement raw cookies access for inspector. (Closed)
Patch Set: '' Created 11 years, 2 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: webkit/api/public/WebKitClient.h
===================================================================
--- webkit/api/public/WebKitClient.h (revision 30453)
+++ webkit/api/public/WebKitClient.h (working copy)
@@ -35,6 +35,7 @@
#include "WebCommon.h"
#include "WebLocalizedString.h"
+#include "WebVector.h"
#include "webkit/api/src/TemporaryGlue.h"
#ifdef WIN32
@@ -56,6 +57,7 @@
class WebThemeEngine;
class WebURL;
class WebURLLoader;
+ struct WebCookie;
struct WebPluginInfo;
template <typename T> class WebVector;
@@ -169,6 +171,8 @@
virtual void setCookies(
const WebURL& url, const WebURL& policyURL, const WebString& cookies) = 0;
virtual WebString cookies(const WebURL& url, const WebURL& policyURL) = 0;
+ virtual bool rawCookies(const WebURL& url, const WebURL& policyURL, WebVector<WebCookie>*) = 0;
+ virtual void deleteCookie(const WebURL& url, const WebString& cookieName) = 0;
// A suggestion to prefetch IP information for the given hostname.
virtual void prefetchHostName(const WebString&) = 0;

Powered by Google App Engine
This is Rietveld 408576698