| Index: android_webview/java/src/org/chromium/android_webview/AwBrowserContext.java
|
| diff --git a/android_webview/java/src/org/chromium/android_webview/AwBrowserContext.java b/android_webview/java/src/org/chromium/android_webview/AwBrowserContext.java
|
| index 244dfedbdbc6975bb913352eb952cdddb838a3b5..9e9e0d58a2f2a365f9a74ab73d904a5cdbf56b02 100644
|
| --- a/android_webview/java/src/org/chromium/android_webview/AwBrowserContext.java
|
| +++ b/android_webview/java/src/org/chromium/android_webview/AwBrowserContext.java
|
| @@ -25,9 +25,11 @@ public class AwBrowserContext {
|
| private AwFormDatabase mFormDatabase;
|
| private HttpAuthDatabase mHttpAuthDatabase;
|
| private AwMessagePortService mMessagePortService;
|
| + private AwMetricsServiceClient mMetricsServiceClient;
|
|
|
| public AwBrowserContext(SharedPreferences sharedPreferences, Context applicationContext) {
|
| mSharedPreferences = sharedPreferences;
|
| + mMetricsServiceClient = new AwMetricsServiceClient(applicationContext);
|
| }
|
|
|
| public AwGeolocationPermissions getGeolocationPermissions() {
|
| @@ -58,6 +60,10 @@ public class AwBrowserContext {
|
| return mMessagePortService;
|
| }
|
|
|
| + public AwMetricsServiceClient getMetricsServiceClient() {
|
| + return mMetricsServiceClient;
|
| + }
|
| +
|
| /**
|
| * @see android.webkit.WebView#pauseTimers()
|
| */
|
|
|