diff options
author | shess <shess@chromium.org> | 2015-04-10 18:45:52 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-11 01:46:49 +0000 |
commit | 7d62e83efbfa90f457ffc8b9b996b4b0ffbeee6f (patch) | |
tree | 7c0e5f5d2288a69bd45575a8c5896cf5a86f33da /content | |
parent | 2a72e51950ce93decbfab801245667094099eb2c (diff) | |
download | chromium_src-7d62e83efbfa90f457ffc8b9b996b4b0ffbeee6f.zip chromium_src-7d62e83efbfa90f457ffc8b9b996b4b0ffbeee6f.tar.gz chromium_src-7d62e83efbfa90f457ffc8b9b996b4b0ffbeee6f.tar.bz2 |
[sql] sql/ IWYU cleanup.
This is just what a few grep runs turned up as obvious.
BUG=none
Review URL: https://codereview.chromium.org/1063143002
Cr-Commit-Position: refs/heads/master@{#324745}
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/media/webrtc_identity_store_backend.cc | 1 | ||||
-rw-r--r-- | content/browser/media/webrtc_identity_store_backend.h | 6 | ||||
-rw-r--r-- | content/browser/quota/quota_database_unittest.cc | 1 |
3 files changed, 4 insertions, 4 deletions
diff --git a/content/browser/media/webrtc_identity_store_backend.cc b/content/browser/media/webrtc_identity_store_backend.cc index 32ef512..59ee816 100644 --- a/content/browser/media/webrtc_identity_store_backend.cc +++ b/content/browser/media/webrtc_identity_store_backend.cc @@ -10,7 +10,6 @@ #include "base/strings/string_util.h" #include "content/public/browser/browser_thread.h" #include "net/base/net_errors.h" -#include "sql/error_delegate_util.h" #include "sql/statement.h" #include "sql/transaction.h" #include "storage/browser/quota/special_storage_policy.h" diff --git a/content/browser/media/webrtc_identity_store_backend.h b/content/browser/media/webrtc_identity_store_backend.h index 8191974..57c16ab 100644 --- a/content/browser/media/webrtc_identity_store_backend.h +++ b/content/browser/media/webrtc_identity_store_backend.h @@ -7,10 +7,12 @@ #include <map> #include <string> +#include <vector> +#include "base/callback.h" +#include "base/memory/ref_counted.h" +#include "base/memory/scoped_ptr.h" #include "base/time/time.h" -#include "sql/connection.h" -#include "sql/meta_table.h" class GURL; diff --git a/content/browser/quota/quota_database_unittest.cc b/content/browser/quota/quota_database_unittest.cc index 5b5b00e..8241c18 100644 --- a/content/browser/quota/quota_database_unittest.cc +++ b/content/browser/quota/quota_database_unittest.cc @@ -15,7 +15,6 @@ #include "sql/connection.h" #include "sql/meta_table.h" #include "sql/statement.h" -#include "sql/transaction.h" #include "storage/browser/quota/quota_database.h" #include "testing/gtest/include/gtest/gtest.h" #include "url/gurl.h" |