OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "android_webview/lib/webview_jni_onload.h" | 5 #include "android_webview/lib/webview_jni_onload.h" |
6 | 6 |
7 #include "android_webview/browser/android_webview_jni_registrar.h" | 7 #include "android_webview/browser/android_webview_jni_registrar.h" |
8 #include "android_webview/common/aw_version_info_values.h" | 8 #include "android_webview/common/aw_version_info_values.h" |
9 #include "android_webview/lib/aw_main_delegate.h" | 9 #include "android_webview/lib/aw_main_delegate.h" |
10 #include "base/android/jni_android.h" | 10 #include "base/android/jni_android.h" |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 base::android::SetVersionNumber(PRODUCT_VERSION); | 48 base::android::SetVersionNumber(PRODUCT_VERSION); |
49 content::SetContentMainDelegate(new android_webview::AwMainDelegate()); | 49 content::SetContentMainDelegate(new android_webview::AwMainDelegate()); |
50 | 50 |
51 // Initialize url lib here while we are still single-threaded, in case we use | 51 // Initialize url lib here while we are still single-threaded, in case we use |
52 // CookieManager before initializing Chromium (which would normally have done | 52 // CookieManager before initializing Chromium (which would normally have done |
53 // this). It's safe to call this multiple times. | 53 // this). It's safe to call this multiple times. |
54 url::Initialize(); | 54 url::Initialize(); |
55 return true; | 55 return true; |
56 } | 56 } |
57 | 57 |
58 } // android_webview | 58 } // namespace android_webview |
OLD | NEW |