diff options
author | mpcomplete@google.com <mpcomplete@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-29 22:24:31 +0000 |
---|---|---|
committer | mpcomplete@google.com <mpcomplete@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-29 22:24:31 +0000 |
commit | c64631651a4267994dbdd336243e06b64e4e7a5f (patch) | |
tree | 23700eae496a6cf3cda0beea3742f12656c8cd4b /chrome/test | |
parent | 45671618a6690a8501f01905a4ed6d19cfcdc0b1 (diff) | |
download | chromium_src-c64631651a4267994dbdd336243e06b64e4e7a5f.zip chromium_src-c64631651a4267994dbdd336243e06b64e4e7a5f.tar.gz chromium_src-c64631651a4267994dbdd336243e06b64e4e7a5f.tar.bz2 |
Refactor ExtensionView to support a UI-less extension instance.
- Introduce ExtensionHost, which is the guy that talks to the RenderViewHost.
- ExtensionView holds an ExtensionHost, and also renders its contents in an
HWND.
- Added code to load a page optionally specified in the manifest as a
background process whenever it exists.
Review URL: http://codereview.chromium.org/92043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14902 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/data/extensions/good/extension2/2/background.html | 1 | ||||
-rw-r--r-- | chrome/test/data/extensions/good/extension2/2/manifest.json | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/chrome/test/data/extensions/good/extension2/2/background.html b/chrome/test/data/extensions/good/extension2/2/background.html new file mode 100644 index 0000000..741876f --- /dev/null +++ b/chrome/test/data/extensions/good/extension2/2/background.html @@ -0,0 +1 @@ +Dummy file. diff --git a/chrome/test/data/extensions/good/extension2/2/manifest.json b/chrome/test/data/extensions/good/extension2/2/manifest.json index 5e148f3..ba13bb7 100644 --- a/chrome/test/data/extensions/good/extension2/2/manifest.json +++ b/chrome/test/data/extensions/good/extension2/2/manifest.json @@ -2,5 +2,6 @@ "id": "10123456789ABCDEF0123456789ABCDEF0123456", "version": "1.0.0.0", "name": "My extension 2", - "plugins_dir": "npapi" + "plugins_dir": "npapi", + "background": "background.html" } |