Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: jni/JniLogSystem.cpp

Issue 4761138508070912: Issue 1848 - Clean up local reference handling (Closed)
Left Patch Set: More formatting issues Created Feb. 4, 2015, 12:03 p.m.
Right Patch Set: Stupid auto-formatter^^ Created Feb. 4, 2015, 12:04 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « jni/JniJsValue.cpp ('k') | jni/JniUpdateAvailableCallback.cpp » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2015 Eyeo GmbH 3 * Copyright (C) 2006-2015 Eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 // TODO: Set log level from Java and handle it here (to reduce C++->Java calls ) 50 // TODO: Set log level from Java and handle it here (to reduce C++->Java calls )
51 51
52 if (method) 52 if (method)
53 { 53 {
54 const char* enumName = 0; 54 const char* enumName = 0;
55 55
56 switch (logLevel) 56 switch (logLevel)
57 { 57 {
58 default: 58 default:
59 case AdblockPlus::LogSystem::LOG_LEVEL_TRACE: 59 case AdblockPlus::LogSystem::LOG_LEVEL_TRACE:
60 enumName = "TRACE"; 60 enumName = "TRACE";
61 break; 61 break;
62 case AdblockPlus::LogSystem::LOG_LEVEL_LOG: 62 case AdblockPlus::LogSystem::LOG_LEVEL_LOG:
63 enumName = "LOG"; 63 enumName = "LOG";
64 break; 64 break;
65 case AdblockPlus::LogSystem::LOG_LEVEL_INFO: 65 case AdblockPlus::LogSystem::LOG_LEVEL_INFO:
66 enumName = "INFO"; 66 enumName = "INFO";
67 break; 67 break;
68 case AdblockPlus::LogSystem::LOG_LEVEL_WARN: 68 case AdblockPlus::LogSystem::LOG_LEVEL_WARN:
69 enumName = "WARN"; 69 enumName = "WARN";
(...skipping 27 matching lines...) Expand all
97 static JNINativeMethod methods[] = 97 static JNINativeMethod methods[] =
98 { 98 {
99 { (char*)"ctor", (char*)"(Ljava/lang/Object;)J", (void*)JniCtor }, 99 { (char*)"ctor", (char*)"(Ljava/lang/Object;)J", (void*)JniCtor },
100 { (char*)"dtor", (char*)"(J)V", (void*)JniDtor } 100 { (char*)"dtor", (char*)"(J)V", (void*)JniDtor }
101 }; 101 };
102 102
103 extern "C" JNIEXPORT void JNICALL Java_org_adblockplus_libadblockplus_LogSystem_ registerNatives(JNIEnv *env, jclass clazz) 103 extern "C" JNIEXPORT void JNICALL Java_org_adblockplus_libadblockplus_LogSystem_ registerNatives(JNIEnv *env, jclass clazz)
104 { 104 {
105 env->RegisterNatives(clazz, methods, sizeof(methods) / sizeof(methods[0])); 105 env->RegisterNatives(clazz, methods, sizeof(methods) / sizeof(methods[0]));
106 } 106 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld