| Index: chrome/renderer/chrome_content_renderer_client.h
|
| ===================================================================
|
| --- chrome/renderer/chrome_content_renderer_client.h (revision 98458)
|
| +++ chrome/renderer/chrome_content_renderer_client.h (working copy)
|
| @@ -6,6 +6,8 @@
|
| #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
|
| #pragma once
|
|
|
| +#include <string>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "content/renderer/content_renderer_client.h"
|
| @@ -73,6 +75,14 @@
|
| virtual bool ShouldOverridePageVisibilityState(
|
| const RenderView* render_view,
|
| WebKit::WebPageVisibilityState* override_state) const OVERRIDE;
|
| + virtual bool HandleGetCookieRequest(RenderView* render_view,
|
| + const GURL& url,
|
| + const GURL& first_party_for_cookies,
|
| + std::string* cookies) OVERRIDE;
|
| + virtual bool HandleSetCookieRequest(RenderView* render_view,
|
| + const GURL& url,
|
| + const GURL& first_party_for_cookies,
|
| + const std::string& value) OVERRIDE;
|
|
|
| // For testing.
|
| void SetExtensionDispatcher(ExtensionDispatcher* extension_dispatcher);
|
|
|