summaryrefslogtreecommitdiffstats
path: root/content/public/renderer
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-16 23:53:10 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-16 23:53:10 +0000
commitaf7004679e915fabdcebbc0e3598886e3678f155 (patch)
treeb0512db4571af3a84bc3bb158d3847a2ea646950 /content/public/renderer
parent980f535b88a854e55bd1af4ba744df0278af5012 (diff)
downloadchromium_src-af7004679e915fabdcebbc0e3598886e3678f155.zip
chromium_src-af7004679e915fabdcebbc0e3598886e3678f155.tar.gz
chromium_src-af7004679e915fabdcebbc0e3598886e3678f155.tar.bz2
Remove the ChromeFrame specific cookie code between the renderer and browser process.
BUG=316496 R=ananta@chromium.org Review URL: https://codereview.chromium.org/102763005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241067 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/renderer')
-rw-r--r--content/public/renderer/content_renderer_client.cc20
-rw-r--r--content/public/renderer/content_renderer_client.h18
2 files changed, 0 insertions, 38 deletions
diff --git a/content/public/renderer/content_renderer_client.cc b/content/public/renderer/content_renderer_client.cc
index f31a173..e33e34f 100644
--- a/content/public/renderer/content_renderer_client.cc
+++ b/content/public/renderer/content_renderer_client.cc
@@ -123,10 +123,6 @@ bool ContentRendererClient::WillSendRequest(
return false;
}
-bool ContentRendererClient::ShouldPumpEventsDuringCookieMessage() {
- return false;
-}
-
unsigned long long ContentRendererClient::VisitedLinkHash(
const char* canonical_url, size_t length) {
return 0LL;
@@ -147,22 +143,6 @@ bool ContentRendererClient::ShouldOverridePageVisibilityState(
return false;
}
-bool ContentRendererClient::HandleGetCookieRequest(
- RenderView* sender,
- const GURL& url,
- const GURL& first_party_for_cookies,
- std::string* cookies) {
- return false;
-}
-
-bool ContentRendererClient::HandleSetCookieRequest(
- RenderView* sender,
- const GURL& url,
- const GURL& first_party_for_cookies,
- const std::string& value) {
- return false;
-}
-
const void* ContentRendererClient::CreatePPAPIInterface(
const std::string& interface_name) {
return NULL;
diff --git a/content/public/renderer/content_renderer_client.h b/content/public/renderer/content_renderer_client.h
index 1fab1e5..1e834fe 100644
--- a/content/public/renderer/content_renderer_client.h
+++ b/content/public/renderer/content_renderer_client.h
@@ -208,10 +208,6 @@ class CONTENT_EXPORT ContentRendererClient {
const GURL& first_party_for_cookies,
GURL* new_url);
- // Whether to pump events when sending sync cookie messages. Needed if the
- // embedder can potentiall put up a modal dialog on the UI thread as a result.
- virtual bool ShouldPumpEventsDuringCookieMessage();
-
// See the corresponding functions in blink::WebFrameClient.
virtual void DidCreateScriptContext(blink::WebFrame* frame,
v8::Handle<v8::Context> context,
@@ -230,20 +226,6 @@ class CONTENT_EXPORT ContentRendererClient {
const RenderFrame* render_frame,
blink::WebPageVisibilityState* override_state);
- // Return true if the GetCookie request will be handled by the embedder.
- // Cookies are returned in the cookie parameter.
- virtual bool HandleGetCookieRequest(RenderView* sender,
- const GURL& url,
- const GURL& first_party_for_cookies,
- std::string* cookies);
-
- // Return true if the SetCookie request will be handled by the embedder.
- // Cookies to be set are passed in the value parameter.
- virtual bool HandleSetCookieRequest(RenderView* sender,
- const GURL& url,
- const GURL& first_party_for_cookies,
- const std::string& value);
-
// Allows an embedder to return custom PPAPI interfaces.
virtual const void* CreatePPAPIInterface(
const std::string& interface_name);