diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-18 04:02:28 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-18 04:02:28 +0000 |
commit | 86712b53429a98accea399fa7769c61737380fac (patch) | |
tree | bd845ce806e0c7c57af6151f1088c1f87b4e81fd /content/common/DEPS | |
parent | c33716931d8f130cc04f1308184284200131d6a4 (diff) | |
download | chromium_src-86712b53429a98accea399fa7769c61737380fac.zip chromium_src-86712b53429a98accea399fa7769c61737380fac.tar.gz chromium_src-86712b53429a98accea399fa7769c61737380fac.tar.bz2 |
Convert to new WebIDBTypes enums and accessors
This way we can verify with DEPS that the content/(common|browser)/ code
is only depending on enums and not linking against Blink symbols.
Some of the code in content/common/ that reaches into WebIDBKey(Path)
still needs to be pulled out into content/child/
BUG=237267
Review URL: https://chromiumcodereview.appspot.com/19442002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212237 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/DEPS')
-rw-r--r-- | content/common/DEPS | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/common/DEPS b/content/common/DEPS index 2b1198b..8ba9df7 100644 --- a/content/common/DEPS +++ b/content/common/DEPS @@ -18,8 +18,7 @@ include_rules = [ "+third_party/WebKit/public/platform/WebIDBCallbacks.h", "+third_party/WebKit/public/platform/WebIDBCursor.h", "+third_party/WebKit/public/platform/WebIDBDatabase.h", - "+third_party/WebKit/public/platform/WebIDBKeyPath.h", - "+third_party/WebKit/public/platform/WebIDBKeyType.h", + "+third_party/WebKit/public/platform/WebIDBTypes.h", "+third_party/WebKit/public/platform/WebReferrerPolicy.h", "+third_party/WebKit/public/platform/WebScreenInfo.h", "+third_party/WebKit/public/platform/WebStorageArea.h", @@ -41,6 +40,7 @@ include_rules = [ # These should be burned down. http://crbug.com/237267 "!third_party/WebKit/public/platform/WebIDBDatabaseError.h", "!third_party/WebKit/public/platform/WebIDBKey.h", + "!third_party/WebKit/public/platform/WebIDBKeyPath.h", "!third_party/WebKit/public/platform/WebIDBKeyRange.h", "!third_party/WebKit/public/platform/WebVector.h", "!third_party/WebKit/public/platform/WebHTTPBody.h", |