summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordglazkov@google.com <dglazkov@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-30 21:54:34 +0000
committerdglazkov@google.com <dglazkov@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-30 21:54:34 +0000
commit64f4ddaf8783de97e8ba774978a6acb641a3d7dc (patch)
tree9d5c4acfa54c13f5c14817b8ac52105113631b9b
parentffeb088e92325536ac1c371df3c4bd857ccb1221 (diff)
downloadchromium_src-64f4ddaf8783de97e8ba774978a6acb641a3d7dc.zip
chromium_src-64f4ddaf8783de97e8ba774978a6acb641a3d7dc.tar.gz
chromium_src-64f4ddaf8783de97e8ba774978a6acb641a3d7dc.tar.bz2
Add empty createHTMLParserQuirks implementation in anticipation of http://trac.webkit.org/changeset/43092.
R=levin BUG=10898 TEST=0 Review URL: http://codereview.chromium.org/100227 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15000 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/glue/chrome_client_impl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/glue/chrome_client_impl.h b/webkit/glue/chrome_client_impl.h
index a2537fb..e372f7c 100644
--- a/webkit/glue/chrome_client_impl.h
+++ b/webkit/glue/chrome_client_impl.h
@@ -15,6 +15,7 @@ class WebCursor;
class WebViewImpl;
namespace WebCore {
+class HTMLParserQuirks;
class PopupContainer;
class SecurityOrigin;
struct WindowFeatures;
@@ -131,6 +132,8 @@ class ChromeClientImpl : public WebCore::ChromeClientChromium {
virtual void formStateDidChange(const WebCore::Node*);
+ virtual WebCore::HTMLParserQuirks* createHTMLParserQuirks() { return 0; }
+
private:
WebViewImpl* webview_; // weak pointer
bool toolbars_visible_;