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

Unified Diff: chrome/browser/renderer_host/resource_message_filter.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: chrome/browser/renderer_host/resource_message_filter.h
===================================================================
--- chrome/browser/renderer_host/resource_message_filter.h (revision 30453)
+++ chrome/browser/renderer_host/resource_message_filter.h (working copy)
@@ -50,6 +50,10 @@
class PrintJobManager;
}
+namespace webkit_glue {
+struct WebCookie;
+}
+
namespace WebKit {
struct WebScreenInfo;
}
@@ -124,6 +128,11 @@
void OnGetCookies(const GURL& url,
const GURL& first_party_for_cookies,
std::string* cookies);
+ void OnGetRawCookies(const GURL& url,
+ const GURL& first_party_for_cookies,
+ std::vector<webkit_glue::WebCookie>* raw_cookies);
+ void OnDeleteCookie(const GURL& url,
+ const std::string& cookieName);
void OnPluginFileDialog(const IPC::Message& msg,
bool multiple_files,
const std::wstring& title,

Powered by Google App Engine
This is Rietveld 408576698