summaryrefslogtreecommitdiffstats
path: root/chrome_frame/np_utils.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/np_utils.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/np_utils.h')
-rw-r--r--chrome_frame/np_utils.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/chrome_frame/np_utils.h b/chrome_frame/np_utils.h
index f2aa387..484497b 100644
--- a/chrome_frame/np_utils.h
+++ b/chrome_frame/np_utils.h
@@ -8,13 +8,15 @@
#include <string>
#include "base/basictypes.h"
-#include "third_party/WebKit/WebCore/bridge/npapi.h"
-#include "third_party/WebKit/WebCore/plugins/npfunctions.h"
+#include "chrome_frame/np_browser_functions.h"
namespace np_utils {
std::string GetLocation(NPP instance, NPObject* window);
-
+bool GetCookiesUsingXPCOMCookieService(NPP instance, const std::string& url,
+ std::string* cookie_string);
+bool SetCookiesUsingXPCOMCookieService(NPP instance, const std::string& url,
+ const std::string& cookie_string);
} // namespace np_utils
-#endif // CHROME_FRAME_NP_UTILS_H_ \ No newline at end of file
+#endif // CHROME_FRAME_NP_UTILS_H_