From fa685ffdc706738091a9243e12da2c89f2a01f0f Mon Sep 17 00:00:00 2001 From: "noelutz@google.com" Date: Thu, 17 Feb 2011 19:47:13 +0000 Subject: Intergration of the client-side phishing detection. If the client-side phishing detection classifies a page as phishing it will send back a ping to Google to verify whether or not the page is really phishing. If the server also classifies the site as phishing we may show a phishing interstitial if it is enabled. BUG= TEST= Review URL: http://codereview.chromium.org/6014003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75299 0039d316-1c4b-4281-b951-d872f2087c98 --- base/tuple.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'base/tuple.h') diff --git a/base/tuple.h b/base/tuple.h index 13d8722..65d0908a 100644 --- a/base/tuple.h +++ b/base/tuple.h @@ -590,6 +590,13 @@ inline void DispatchToMethod(ObjT* obj, Method method, (obj->*method)(arg.a, arg.b, arg.c, arg.d, arg.e, arg.f, arg.g); } +template +inline void DispatchToMethod(ObjT* obj, Method method, + const Tuple8& arg) { + (obj->*method)(arg.a, arg.b, arg.c, arg.d, arg.e, arg.f, arg.g, arg.h); +} + // Static Dispatchers with no out params. template -- cgit v1.1