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

Side by Side Diff: net/android/gurl_utils.cc

Issue 2901103002: Fix closing namespace comments in //net. (Closed)
Patch Set: Rebase. 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
« no previous file with comments | « net/android/gurl_utils.h ('k') | net/base/cache_type.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "net/android/gurl_utils.h" 5 #include "net/android/gurl_utils.h"
6 6
7 #include "base/android/jni_string.h" 7 #include "base/android/jni_string.h"
8 #include "jni/GURLUtils_jni.h" 8 #include "jni/GURLUtils_jni.h"
9 #include "url/gurl.h" 9 #include "url/gurl.h"
10 10
(...skipping 15 matching lines...) Expand all
26 const JavaParamRef<jstring>& url) { 26 const JavaParamRef<jstring>& url) {
27 GURL host(base::android::ConvertJavaStringToUTF16(env, url)); 27 GURL host(base::android::ConvertJavaStringToUTF16(env, url));
28 28
29 return base::android::ConvertUTF8ToJavaString(env, host.scheme()); 29 return base::android::ConvertUTF8ToJavaString(env, host.scheme());
30 } 30 }
31 31
32 bool RegisterGURLUtils(JNIEnv* env) { 32 bool RegisterGURLUtils(JNIEnv* env) {
33 return RegisterNativesImpl(env); 33 return RegisterNativesImpl(env);
34 } 34 }
35 35
36 } // net namespace 36 } // namespace net
OLDNEW
« no previous file with comments | « net/android/gurl_utils.h ('k') | net/base/cache_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698