Index: android_webview/browser/aw_web_contents_view_delegate_factory.h |
diff --git a/android_webview/browser/aw_web_contents_view_delegate_factory.h b/android_webview/browser/aw_web_contents_view_delegate_factory.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..76bcd584011def2b3bf22db7852216ab1502cebc |
--- /dev/null |
+++ b/android_webview/browser/aw_web_contents_view_delegate_factory.h |
@@ -0,0 +1,21 @@ |
+// Copyright (c) 2012 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 ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_VIEW_DELEGATE_FACTORY_H_ |
+#define ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_VIEW_DELEGATE_FACTORY_H_ |
+ |
+namespace content { |
+class WebContents; |
+class WebContentsViewDelegate; |
+} // namespace content |
+ |
+namespace android_webview { |
+ |
+// Implemented in native/. |
+content::WebContentsViewDelegate* CreateAwWebContentsViewDelegate( |
+ content::WebContents* web_contents); |
+ |
+} // namespace android_webview |
+ |
+#endif // ANDROID_WEBVIEW_BROWSER_AW_WEB_CONTENTS_VIEW_DELEGATE_FACTORY_H_ |