summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
authorjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-20 12:37:07 +0000
committerjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-20 12:37:07 +0000
commit237f28167d9339d03a86d6f0942b4cba7c138d27 (patch)
treec3c1cfd2d4a3b4db731277a704979338923ba4f4 /chrome/test
parentab5ae272478145a9403d2a5a3004f3bec05870c7 (diff)
downloadchromium_src-237f28167d9339d03a86d6f0942b4cba7c138d27.zip
chromium_src-237f28167d9339d03a86d6f0942b4cba7c138d27.tar.gz
chromium_src-237f28167d9339d03a86d6f0942b4cba7c138d27.tar.bz2
When testing, we don't want to know about 'component' or 'external'
extensions, and if there are loaded extensions we probably loaded them explicitly (and got a notification thereof) so don't list them either. BUG=none TEST=none Review URL: http://codereview.chromium.org/1081008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42189 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r--chrome/test/automation/automation_messages_internal.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/chrome/test/automation/automation_messages_internal.h b/chrome/test/automation/automation_messages_internal.h
index 495905e..7447020 100644
--- a/chrome/test/automation/automation_messages_internal.h
+++ b/chrome/test/automation/automation_messages_internal.h
@@ -1161,7 +1161,14 @@ IPC_BEGIN_MESSAGES(Automation)
FilePath /* root directory of extension */,
AutomationMsg_ExtensionResponseValues)
- // Retrieves a list of the root directories of all enabled extensions.
+ // Retrieves a list of the root directories of all enabled extensions
+ // that have been installed into Chrome by dropping a .crx file onto
+ // Chrome or an equivalent action. Other types of extensions are not
+ // included on the list (e.g. "component" extensions, "external"
+ // extensions or extensions loaded via --load-extension since the first
+ // two are generally not useful for testing (e.g. an external extension
+ // could mess with an automated test if it's present on some systems only)
+ // and the last would generally be explicitly loaded by tests.
IPC_SYNC_MESSAGE_ROUTED0_1(AutomationMsg_GetEnabledExtensions,
std::vector<FilePath>)