| Index: chrome/browser/extensions/extensions_service_unittest.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/extensions_service_unittest.cc (revision 16736)
|
| +++ chrome/browser/extensions/extensions_service_unittest.cc (working copy)
|
| @@ -299,10 +299,20 @@
|
| extensions_path = extensions_path.AppendASCII("extensions");
|
|
|
| // A simple extension that should install without error.
|
| + // A simple extension that should install without error.
|
| FilePath path = extensions_path.AppendASCII("good.crx");
|
| TestInstallExtension(path, true);
|
| +
|
| // TODO(erikkay): verify the contents of the installed extension.
|
|
|
| + // An extension with theme images.
|
| + path = extensions_path.AppendASCII("theme.crx");
|
| + frontend->TestInstallExtension(path, backend, true);
|
| +
|
| + // An extension with page actions.
|
| + path = extensions_path.AppendASCII("page_action.crx");
|
| + frontend->TestInstallExtension(path, backend, true);
|
| +
|
| // 0-length extension file.
|
| path = extensions_path.AppendASCII("not_an_extension.crx");
|
| TestInstallExtension(path, false);
|
|
|