diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-16 18:54:38 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-16 18:54:38 +0000 |
commit | 740fab35301a73038485151be30940b214b571f7 (patch) | |
tree | f0a8c02dd94e9fc04c36f03a14105b64a0f01ecf /base | |
parent | 5ce2fd2d8edaf8f5e963f2e2a47f1872862284b7 (diff) | |
download | chromium_src-740fab35301a73038485151be30940b214b571f7.zip chromium_src-740fab35301a73038485151be30940b214b571f7.tar.gz chromium_src-740fab35301a73038485151be30940b214b571f7.tar.bz2 |
Enable isolated worlds for content scripts.
R=aa
TEST=LayoutTests/http/tests/security/isolatedWorld/ (will be landing soon after this patch)
BUG=12218
Review URL: http://codereview.chromium.org/155626
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20883 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/base_switches.cc | 4 | ||||
-rw-r--r-- | base/base_switches.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/base/base_switches.cc b/base/base_switches.cc index 46b7676..77d263c 100644 --- a/base/base_switches.cc +++ b/base/base_switches.cc @@ -40,8 +40,4 @@ const wchar_t kEnableDCHECK[] = L"enable-dcheck"; // Available at http://www.adambarth.com/papers/2008/jackson-barth.pdf const wchar_t kForceHTTPS[] = L"force-https"; -// Run content scripts in their own isolated world instead of just in a new -// context. -const wchar_t kIsolatedWorld[] = L"isolated-world"; - } // namespace switches diff --git a/base/base_switches.h b/base/base_switches.h index 7b66ad5..97a3691 100644 --- a/base/base_switches.h +++ b/base/base_switches.h @@ -17,7 +17,6 @@ extern const wchar_t kNoErrorDialogs[]; extern const wchar_t kProcessType[]; extern const wchar_t kEnableDCHECK[]; extern const wchar_t kForceHTTPS[]; -extern const wchar_t kIsolatedWorld[]; } // namespace switches |