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

Side by Side Diff: android_webview/lib/webview_jni_onload.cc

Issue 2928823004: Fix header guard and namespace in android_webview (Closed)
Patch Set: Fix header guard and namespace in android_webview Created 3 years, 6 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « android_webview/common/crash_reporter/crash_keys.h ('k') | android_webview/renderer/aw_content_settings_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698