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

Side by Side Diff: base/android/jni_generator/sample_for_tests.h

Issue 989343002: Revert of base: Fix/add header #ifndef guards. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #ifndef BASE_ANDROID_JNI_GENERATOR_SAMPLE_FOR_TESTS_H_
6 #define BASE_ANDROID_JNI_GENERATOR_SAMPLE_FOR_TESTS_H_
7
8 #include <jni.h> 5 #include <jni.h>
9 #include <map> 6 #include <map>
10 #include <string> 7 #include <string>
11 8
12 #include "base/android/jni_android.h" 9 #include "base/android/jni_android.h"
13 #include "base/basictypes.h" 10 #include "base/basictypes.h"
14 11
15 namespace base { 12 namespace base {
16 namespace android { 13 namespace android {
17 14
(...skipping 26 matching lines...) Expand all
44 JNIEnv* env, jobject obj); 41 JNIEnv* env, jobject obj);
45 42
46 private: 43 private:
47 std::map<long, std::string> map_; 44 std::map<long, std::string> map_;
48 45
49 DISALLOW_COPY_AND_ASSIGN(CPPClass); 46 DISALLOW_COPY_AND_ASSIGN(CPPClass);
50 }; 47 };
51 48
52 } // namespace android 49 } // namespace android
53 } // namespace base 50 } // namespace base
54
55 #endif // BASE_ANDROID_JNI_GENERATOR_SAMPLE_FOR_TESTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698