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

Side by Side Diff: content/browser/android/java/gin_java_bound_object.cc

Issue 693773003: Cleanup various includes and namespace references. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comment Created 6 years, 1 month 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "content/browser/android/java/gin_java_bound_object.h" 5 #include "content/browser/android/java/gin_java_bound_object.h"
6 6
7 #include "base/android/jni_android.h" 7 #include "base/android/jni_android.h"
8 #include "base/android/jni_string.h" 8 #include "base/android/jni_string.h"
9 #include "base/android/scoped_java_ref.h" 9 #include "base/android/scoped_java_ref.h"
10 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 kJavaLangReflectMethod, 178 kJavaLangReflectMethod,
179 kIsAnnotationPresent, 179 kIsAnnotationPresent,
180 kTakesJavaLangClassReturningBoolean), 180 kTakesJavaLangClassReturningBoolean),
181 safe_annotation_clazz_.obj()); 181 safe_annotation_clazz_.obj());
182 182
183 if (!safe) 183 if (!safe)
184 continue; 184 continue;
185 } 185 }
186 186
187 JavaMethod* method = new JavaMethod(java_method); 187 JavaMethod* method = new JavaMethod(java_method);
188 methods_.insert(std::make_pair(method->name(), method)); 188 methods_.insert(std::make_pair(method->name(), make_linked_ptr(method)));
189 } 189 }
190 } 190 }
191 191
192 } // namespace content 192 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/android/content_view_statics.cc ('k') | net/quic/crypto/source_address_token.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698