summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_frame_npapi.h
diff options
context:
space:
mode:
authorstoyan@chromium.org <stoyan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-13 17:10:51 +0000
committerstoyan@chromium.org <stoyan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-13 17:10:51 +0000
commit27ad98351b503a436de21c76c2e7944451b620a3 (patch)
tree9b05bf03bd09cf66243e3284d5a6e0192a8fe907 /chrome_frame/chrome_frame_npapi.h
parent5caf9b2b71c331b883c3760dd4f31855b7ca2d13 (diff)
downloadchromium_src-27ad98351b503a436de21c76c2e7944451b620a3.zip
chromium_src-27ad98351b503a436de21c76c2e7944451b620a3.tar.gz
chromium_src-27ad98351b503a436de21c76c2e7944451b620a3.tar.bz2
Preparation CL for executing READ and COOKIE network requests from the background thread.
Review URL: http://codereview.chromium.org/1520033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44369 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_frame_npapi.h')
-rw-r--r--chrome_frame/chrome_frame_npapi.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/chrome_frame/chrome_frame_npapi.h b/chrome_frame/chrome_frame_npapi.h
index e7e9fc4..76f1e1e 100644
--- a/chrome_frame/chrome_frame_npapi.h
+++ b/chrome_frame/chrome_frame_npapi.h
@@ -138,12 +138,6 @@ END_MSG_MAP()
const std::string& message,
const std::string& origin,
const std::string& target);
- virtual void OnSetCookieAsync(int tab_handle, const GURL& url,
- const std::string& cookie);
-
- virtual void OnGetCookiesFromHost(int tab_handle, const GURL& url,
- int cookie_id);
-
// ChromeFrameDelegate overrides
virtual void OnLoadFailed(int error_code, const std::string& url);
virtual void OnAutomationServerReady();
@@ -291,18 +285,6 @@ END_MSG_MAP()
static LRESULT CALLBACK DropKillFocusHook(int code, WPARAM wparam,
LPARAM lparam); // NO_LINT
- // Helper functions to set and get cookies using the XPCOM cookie service
- // interfaces. This would only work in Firefox.
- bool SetCookiesUsingXPCOMCookieService(const GURL& url,
- const std::string& cookie);
- bool GetCookiesUsingXPCOMCookieService(const GURL& url,
- std::string* cookie_string);
- // Helper function to return the XPCOM nsICookieService interface and
- // nsIURI interface representing the url passed in.
- bool GetXPCOMCookieServiceAndURI(const GURL& url,
- nsICookieService** cookie_service,
- nsIURI** uri);
-
// The plugins opaque instance handle
NPP instance_;