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

Side by Side Diff: android_webview/browser/token_binding_manager_bridge.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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/browser/token_binding_manager_bridge.h" 5 #include "android_webview/browser/token_binding_manager_bridge.h"
6 6
7 #include "android_webview/browser/net/token_binding_manager.h" 7 #include "android_webview/browser/net/token_binding_manager.h"
8 #include "base/android/jni_android.h" 8 #include "base/android/jni_android.h"
9 #include "base/android/jni_array.h" 9 #include "base/android/jni_array.h"
10 #include "base/android/jni_string.h" 10 #include "base/android/jni_string.h"
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 j_callback.Reset(env, callback); 109 j_callback.Reset(env, callback);
110 TokenBindingManager::DeletionCompleteCallback complete_callback = 110 TokenBindingManager::DeletionCompleteCallback complete_callback =
111 base::Bind(&OnDeletionComplete, j_callback); 111 base::Bind(&OnDeletionComplete, j_callback);
112 TokenBindingManager::GetInstance()->DeleteAllKeys(complete_callback); 112 TokenBindingManager::GetInstance()->DeleteAllKeys(complete_callback);
113 } 113 }
114 114
115 bool RegisterTokenBindingManager(JNIEnv* env) { 115 bool RegisterTokenBindingManager(JNIEnv* env) {
116 return RegisterNativesImpl(env); 116 return RegisterNativesImpl(env);
117 } 117 }
118 118
119 } // android_webview namespace 119 } // namespace android_webview
OLDNEW
« no previous file with comments | « android_webview/browser/test/rendering_test.cc ('k') | android_webview/common/crash_reporter/aw_microdump_crash_reporter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698