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

Side by Side Diff: android_webview/browser/jni_dependency_factory.h

Issue 1474483004: WebView Metrics client implementation (Chromium part) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move client back to browser layer, make it a Leaky global, and some cleanup Created 5 years 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ANDROID_WEBVIEW_BROWSER_JNI_DEPENDENCY_FACTORY_H_ 5 #ifndef ANDROID_WEBVIEW_BROWSER_JNI_DEPENDENCY_FACTORY_H_
6 #define ANDROID_WEBVIEW_BROWSER_JNI_DEPENDENCY_FACTORY_H_ 6 #define ANDROID_WEBVIEW_BROWSER_JNI_DEPENDENCY_FACTORY_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 9
10 class PrefService;
11
12 namespace net {
13 class URLRequestContextGetter;
14 }
15
10 namespace content { 16 namespace content {
11 class ExternalVideoSurfaceContainer; 17 class ExternalVideoSurfaceContainer;
12 class WebContents; 18 class WebContents;
13 class WebContentsViewDelegate; 19 class WebContentsViewDelegate;
14 } // namespace content 20 } // namespace content
15 21
16 namespace android_webview { 22 namespace android_webview {
17 23
18 class AwBrowserContext; 24 class AwBrowserContext;
19 class AwMessagePortService; 25 class AwMessagePortService;
(...skipping 15 matching lines...) Expand all
35 virtual AwLocaleManager* CreateAwLocaleManager() = 0; 41 virtual AwLocaleManager* CreateAwLocaleManager() = 0;
36 #if defined(VIDEO_HOLE) 42 #if defined(VIDEO_HOLE)
37 virtual content::ExternalVideoSurfaceContainer* 43 virtual content::ExternalVideoSurfaceContainer*
38 CreateExternalVideoSurfaceContainer(content::WebContents* contents) = 0; 44 CreateExternalVideoSurfaceContainer(content::WebContents* contents) = 0;
39 #endif 45 #endif
40 }; 46 };
41 47
42 } // namespace android_webview 48 } // namespace android_webview
43 49
44 #endif // ANDROID_WEBVIEW_BROWSER_JNI_DEPENDENCY_FACTORY_H_ 50 #endif // ANDROID_WEBVIEW_BROWSER_JNI_DEPENDENCY_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698