mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Apply clang-format to all C, C++ and ObjC files (issue #2171)
This commit is contained in:
@@ -3,26 +3,37 @@
|
||||
// can be found in the LICENSE file.
|
||||
//
|
||||
|
||||
#include "include/cef_version.h"
|
||||
#include <cstddef>
|
||||
#include "include/cef_version.h"
|
||||
|
||||
CEF_EXPORT int cef_version_info(int entry) {
|
||||
switch (entry) {
|
||||
case 0: return CEF_VERSION_MAJOR;
|
||||
case 1: return CEF_COMMIT_NUMBER;
|
||||
case 2: return CHROME_VERSION_MAJOR;
|
||||
case 3: return CHROME_VERSION_MINOR;
|
||||
case 4: return CHROME_VERSION_BUILD;
|
||||
case 5: return CHROME_VERSION_PATCH;
|
||||
default: return 0;
|
||||
case 0:
|
||||
return CEF_VERSION_MAJOR;
|
||||
case 1:
|
||||
return CEF_COMMIT_NUMBER;
|
||||
case 2:
|
||||
return CHROME_VERSION_MAJOR;
|
||||
case 3:
|
||||
return CHROME_VERSION_MINOR;
|
||||
case 4:
|
||||
return CHROME_VERSION_BUILD;
|
||||
case 5:
|
||||
return CHROME_VERSION_PATCH;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
CEF_EXPORT const char* cef_api_hash(int entry) {
|
||||
switch (entry) {
|
||||
case 0: return CEF_API_HASH_PLATFORM;
|
||||
case 1: return CEF_API_HASH_UNIVERSAL;
|
||||
case 2: return CEF_COMMIT_HASH;
|
||||
default: return NULL;
|
||||
case 0:
|
||||
return CEF_API_HASH_PLATFORM;
|
||||
case 1:
|
||||
return CEF_API_HASH_UNIVERSAL;
|
||||
case 2:
|
||||
return CEF_COMMIT_HASH;
|
||||
default:
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user