| Index: base/logging.h
|
| diff --git a/base/logging.h b/base/logging.h
|
| index 46eca374edb5e4b04624379d963093a00ee6f7b2..6ea430dad963e18259985c3c958e1303bb832ec9 100644
|
| --- a/base/logging.h
|
| +++ b/base/logging.h
|
| @@ -949,9 +949,13 @@ inline std::ostream& operator<<(std::ostream& out, const std::wstring& wstr) {
|
| // 5 -- LOG(ERROR) at runtime, only once per call-site
|
|
|
| #ifndef NOTIMPLEMENTED_POLICY
|
| +#if defined(OS_ANDROID) && defined(OFFICIAL_BUILD)
|
| +#define NOTIMPLEMENTED_POLICY 0
|
| +#else
|
| // Select default policy: LOG(ERROR)
|
| #define NOTIMPLEMENTED_POLICY 4
|
| #endif
|
| +#endif
|
|
|
| #if defined(COMPILER_GCC)
|
| // On Linux, with GCC, we can use __PRETTY_FUNCTION__ to get the demangled name
|
|
|