Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1175)

Unified Diff: android_webview/browser/jni_dependency_factory.h

Issue 2888173003: [WebView] Remove jni_dependency_factory.h (Closed)
Patch Set: add explicit Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: android_webview/browser/jni_dependency_factory.h
diff --git a/android_webview/browser/jni_dependency_factory.h b/android_webview/browser/jni_dependency_factory.h
deleted file mode 100644
index f4371e796e830ae76e5d77df71c259f3fc5f2200..0000000000000000000000000000000000000000
--- a/android_webview/browser/jni_dependency_factory.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (c) 2013 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_JNI_DEPENDENCY_FACTORY_H_
-#define ANDROID_WEBVIEW_BROWSER_JNI_DEPENDENCY_FACTORY_H_
-
-#include "base/memory/ref_counted.h"
-
-namespace content {
-class WebContents;
-class WebContentsViewDelegate;
-} // namespace content
-
-namespace android_webview {
-
-class AwBrowserContext;
-class AwQuotaManagerBridge;
-
-// Used to create instances of objects under native that are used in browser.
-class JniDependencyFactory {
- public:
- virtual ~JniDependencyFactory() {}
-
- virtual scoped_refptr<AwQuotaManagerBridge> CreateAwQuotaManagerBridge(
- AwBrowserContext* browser_context) = 0;
- virtual content::WebContentsViewDelegate* CreateViewDelegate(
- content::WebContents* web_contents) = 0;
-};
-
-} // namespace android_webview
-
-#endif // ANDROID_WEBVIEW_BROWSER_JNI_DEPENDENCY_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698