diff options
Diffstat (limited to 'webkit/glue/editor_client_impl.cc')
-rw-r--r-- | webkit/glue/editor_client_impl.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/webkit/glue/editor_client_impl.cc b/webkit/glue/editor_client_impl.cc index 74fce21..04a9ac5 100644 --- a/webkit/glue/editor_client_impl.cc +++ b/webkit/glue/editor_client_impl.cc @@ -6,7 +6,10 @@ // and I'm not really sure what to do about most of them. #include "config.h" -#pragma warning(push, 0) + +#include "base/compiler_specific.h" + +MSVC_PUSH_WARNING_LEVEL(0); #include "Document.h" #include "EditCommand.h" #include "Editor.h" @@ -17,7 +20,7 @@ #include "KeyboardEvent.h" #include "PlatformKeyboardEvent.h" #include "PlatformString.h" -#pragma warning(pop) +MSVC_POP_WARNING(); #undef LOG #include "base/string_util.h" |