commit | 67570601782d09fa526bb15458859a03f0d637c6 | [log] [tgz] |
---|---|---|
author | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Tue Aug 23 21:50:54 2011 |
committer | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Tue Aug 23 21:50:54 2011 |
tree | 16d32ee51d908428f3db545611605d9725ff209f | |
parent | 34da3ebb86a7167b33f5aef263f92f0f8124ce92 [diff] [blame] |
Added code for localizing scripts CSS before injection takes place. BUG=39899 TEST=browser_tests:ExtensionApiTest.ContentScriptCSSLocalization Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=97365 Review URL: http://codereview.chromium.org/7552028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97927 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/common/extensions/extension_set.h b/chrome/common/extensions/extension_set.h index dbd16ad..a27c626 100644 --- a/chrome/common/extensions/extension_set.h +++ b/chrome/common/extensions/extension_set.h
@@ -6,6 +6,7 @@ #define CHROME_COMMON_EXTENSIONS_EXTENSION_SET_H_ #pragma once +#include <map> #include <string> #include <vector> @@ -18,6 +19,8 @@ // Only one extension can be in the set with a given ID. class ExtensionSet { public: + typedef std::pair<FilePath, std::string> ExtensionPathAndDefaultLocale; + ExtensionSet(); ~ExtensionSet();