summaryrefslogtreecommitdiffstats
path: root/chrome_frame/utils.h
diff options
context:
space:
mode:
authorstoyan@chromium.org <stoyan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-09 16:54:12 +0000
committerstoyan@chromium.org <stoyan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-09 16:54:12 +0000
commitce2b9f923c23700d24658b5118ab9c1d2f330d8b (patch)
treebdd559fc120cc9b5e5111a5c53efc4e3e0184466 /chrome_frame/utils.h
parent78c7e2c68da0079869252bb464f4633373e5d067 (diff)
downloadchromium_src-ce2b9f923c23700d24658b5118ab9c1d2f330d8b.zip
chromium_src-ce2b9f923c23700d24658b5118ab9c1d2f330d8b.tar.gz
chromium_src-ce2b9f923c23700d24658b5118ab9c1d2f330d8b.tar.bz2
A new way of hooking internet protocols.
TEST=chrome frame tests Review URL: http://codereview.chromium.org/2620001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49265 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/utils.h')
-rw-r--r--chrome_frame/utils.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/chrome_frame/utils.h b/chrome_frame/utils.h
index d0f64d5..c60dfab 100644
--- a/chrome_frame/utils.h
+++ b/chrome_frame/utils.h
@@ -437,7 +437,7 @@ bool IsTextHtmlClipFormat(CLIPFORMAT cf);
ProtocolPatchMethod GetPatchMethod();
// Returns true if the IMoniker patch is enabled.
-bool MonikerPatchEnabled();
+bool IsIBrowserServicePatchEnabled();
// STL helper class that implements a functor to delete objects.
// E.g: std::for_each(v.begin(), v.end(), utils::DeleteObject());
@@ -451,4 +451,9 @@ class DeleteObject {
};
}
+// Convert various protocol flags to text representation. Used for logging.
+std::string BindStatus2Str(ULONG bind_status);
+std::string PiFlags2Str(DWORD flags);
+std::string Bscf2Str(DWORD flags);
+
#endif // CHROME_FRAME_UTILS_H_