diff options
author | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-17 19:30:56 +0000 |
---|---|---|
committer | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-17 19:30:56 +0000 |
commit | 1ee99fc683e6d57ce4130f108d083986556dffdf (patch) | |
tree | ff2599eda96fb29726c527a9febed4e217271d77 /sync | |
parent | 0377fc3175064f02f65be966886724bc073a0659 (diff) | |
download | chromium_src-1ee99fc683e6d57ce4130f108d083986556dffdf.zip chromium_src-1ee99fc683e6d57ce4130f108d083986556dffdf.tar.gz chromium_src-1ee99fc683e6d57ce4130f108d083986556dffdf.tar.bz2 |
Android: fixes nit for "using" clause order, no functional changes.
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/11187025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162485 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync')
-rw-r--r-- | sync/util/session_utils_android.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sync/util/session_utils_android.cc b/sync/util/session_utils_android.cc index 7be415d..72db208 100644 --- a/sync/util/session_utils_android.cc +++ b/sync/util/session_utils_android.cc @@ -17,8 +17,8 @@ using base::android::CheckException; using base::android::ConvertUTF8ToJavaString; using base::android::GetApplicationContext; using base::android::GetClass; -using base::android::MethodID; using base::android::JavaRef; +using base::android::MethodID; using base::android::ScopedJavaLocalRef; namespace { |