| Index: third_party/WebKit/Source/wtf/Compiler.h
|
| diff --git a/third_party/WebKit/Source/wtf/Compiler.h b/third_party/WebKit/Source/wtf/Compiler.h
|
| index c2e509cf4f2b7078cab20f38b1c7e7a7ae7960f3..fbd6e20439dadbf52b234b4042c58d87f326f095 100644
|
| --- a/third_party/WebKit/Source/wtf/Compiler.h
|
| +++ b/third_party/WebKit/Source/wtf/Compiler.h
|
| @@ -159,4 +159,12 @@
|
| #define NO_SANITIZE_UNRELATED_CAST
|
| #endif
|
|
|
| +/* WTF_NON_EXPORTED_BASE; similar NON_EXPORTED_BASE in base/compiler_specific.h */
|
| +
|
| +#if COMPILER(MSVC)
|
| +#define WTF_NON_EXPORTED_BASE(code) __pragma(warning(suppress:4275)) code
|
| +#else
|
| +#define WTF_NON_EXPORTED_BASE(code) code
|
| +#endif
|
| +
|
| #endif /* WTF_Compiler_h */
|
|
|