| Index: chrome/browser/extensions/user_script_master.h
|
| diff --git a/chrome/browser/extensions/user_script_master.h b/chrome/browser/extensions/user_script_master.h
|
| index 8df49be20e55f2511a2d1c5eb297098fae92b567..5167a65d4d1109f561142d88f9e600a0cf7e0a75 100644
|
| --- a/chrome/browser/extensions/user_script_master.h
|
| +++ b/chrome/browser/extensions/user_script_master.h
|
| @@ -12,6 +12,14 @@
|
| #include "base/scoped_ptr.h"
|
| #include "base/shared_memory.h"
|
| #include "base/string_piece.h"
|
| +#include "googleurl/src/gurl.h"
|
| +
|
| +struct UserScriptInfo {
|
| + GURL url;
|
| + FilePath path;
|
| + std::vector<std::string> matches;
|
| +};
|
| +typedef std::vector<UserScriptInfo> UserScriptList;
|
|
|
| // Manages a segment of shared memory that contains the user scripts the user
|
| // has installed. Lives on the UI thread.
|
|
|