diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-10 03:56:30 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-10 03:56:30 +0000 |
commit | b6910e8e8f47a1bc7881e60871d2808f1c768eb1 (patch) | |
tree | cd75a385ff33d49d1482896ddd3a98ec7b4c0906 /webkit/appcache/appcache_service.cc | |
parent | b35254d80932c7a1be75e2a6f271219929a8a3be (diff) | |
download | chromium_src-b6910e8e8f47a1bc7881e60871d2808f1c768eb1.zip chromium_src-b6910e8e8f47a1bc7881e60871d2808f1c768eb1.tar.gz chromium_src-b6910e8e8f47a1bc7881e60871d2808f1c768eb1.tar.bz2 |
add some missing includes of <functional> to fix compilation on VS2012
BUG=143646
Review URL: https://chromiumcodereview.appspot.com/11094029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161031 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache_service.cc')
-rw-r--r-- | webkit/appcache/appcache_service.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webkit/appcache/appcache_service.cc b/webkit/appcache/appcache_service.cc index 0c4d9a9..0149e62 100644 --- a/webkit/appcache/appcache_service.cc +++ b/webkit/appcache/appcache_service.cc @@ -4,6 +4,8 @@ #include "webkit/appcache/appcache_service.h" +#include <functional> + #include "base/bind.h" #include "base/bind_helpers.h" #include "base/logging.h" |