diff options
-rw-r--r-- | webkit/glue/webclipboard_impl.cc | 4 | ||||
-rw-r--r-- | webkit/glue/webkit_client_impl.cc | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/webkit/glue/webclipboard_impl.cc b/webkit/glue/webclipboard_impl.cc index 4e9db87..494abca 100644 --- a/webkit/glue/webclipboard_impl.cc +++ b/webkit/glue/webclipboard_impl.cc @@ -2,6 +2,10 @@ // source code is governed by a BSD-style license that can be found in the // LICENSE file. +// TODO(darin): This include should not be necessary, but for some reason the +// Mac build requires it. +#include "config.h" + #include "webkit/glue/webclipboard_impl.h" #include "WebImage.h" diff --git a/webkit/glue/webkit_client_impl.cc b/webkit/glue/webkit_client_impl.cc index 721dcde..2389a71 100644 --- a/webkit/glue/webkit_client_impl.cc +++ b/webkit/glue/webkit_client_impl.cc @@ -2,6 +2,10 @@ // source code is governed by a BSD-style license that can be found in the // LICENSE file. +// TODO(darin): This include should not be necessary, but for some reason the +// Mac build requires it. +#include "config.h" + #include "webkit/glue/webkit_client_impl.h" namespace webkit_glue { |