Index: third_party/WebKit/Source/web/WebFactoryImpl.h |
diff --git a/third_party/WebKit/Source/web/WebFactoryImpl.h b/third_party/WebKit/Source/web/WebFactoryImpl.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f2af6b08d8c3295c51f072b44334dbc2b53c81fc |
--- /dev/null |
+++ b/third_party/WebKit/Source/web/WebFactoryImpl.h |
@@ -0,0 +1,24 @@ |
+// Copyright 2017 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef WebFactoryImpl_h |
+#define WebFactoryImpl_h |
+ |
+#include "core/WebFactory.h" |
+ |
+namespace blink { |
+ |
+class WebFactoryImpl : public WebFactory { |
+ public: |
+ WebFactoryImpl() {} |
+ ~WebFactoryImpl() {} |
+ |
+ ChromeClient* CreateChromeClient(WebViewBase*) const override; |
+ WebViewBase* CreateWebViewBase(WebViewClient*, |
+ WebPageVisibilityState) const override; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif |