diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-16 07:47:39 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-16 07:47:39 +0000 |
commit | c8865964330959b40718c0e6148288da64f14fec (patch) | |
tree | 78a39905db0a850690c673a76ef59eadb28f54d6 /chrome/common/child_process_logging.h | |
parent | 3ce10b7c419cc4522f885008cbb3c76b02256ba3 (diff) | |
download | chromium_src-c8865964330959b40718c0e6148288da64f14fec.zip chromium_src-c8865964330959b40718c0e6148288da64f14fec.tar.gz chromium_src-c8865964330959b40718c0e6148288da64f14fec.tar.bz2 |
Fix regression where we stopped running content scripts in
extension processes.
BUG=29621
Review URL: http://codereview.chromium.org/505012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34668 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/child_process_logging.h')
-rw-r--r-- | chrome/common/child_process_logging.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/child_process_logging.h b/chrome/common/child_process_logging.h index 513359f..9bc386e 100644 --- a/chrome/common/child_process_logging.h +++ b/chrome/common/child_process_logging.h @@ -5,7 +5,7 @@ #ifndef CHROME_COMMON_CHILD_PROCESS_LOGGING_H_ #define CHROME_COMMON_CHILD_PROCESS_LOGGING_H_ -#include <vector> +#include <set> #include "base/basictypes.h" #include "googleurl/src/gurl.h" @@ -25,7 +25,7 @@ void SetClientId(const std::string& client_id); // - renderer: the unique set of extension ids from all content scripts // - extension: the id of each extension running in this process (there can be // multiple because of process collapsing). -void SetActiveExtensions(const std::vector<std::string>& extension_ids); +void SetActiveExtensions(const std::set<std::string>& extension_ids); // Simple wrapper class that sets the active URL in it's constructor and clears // the active URL in the destructor. |