| Index: chrome/browser/extensions/extension_function_dispatcher.h
|
| diff --git a/chrome/browser/extensions/extension_function_dispatcher.h b/chrome/browser/extensions/extension_function_dispatcher.h
|
| index 9bddecfb006aab663150ac6ad89d79007bd22be5..2e8251f7e89bcc99d0328d63745828f6834689bf 100644
|
| --- a/chrome/browser/extensions/extension_function_dispatcher.h
|
| +++ b/chrome/browser/extensions/extension_function_dispatcher.h
|
| @@ -114,7 +114,7 @@ class ExtensionFunctionDispatcher {
|
| const GURL& url() { return url_; }
|
|
|
| // Gets the ID for this extension.
|
| - const std::string extension_id() { return url_.host(); }
|
| + const std::string extension_id() { return extension_id_; }
|
|
|
| // The profile that this dispatcher is associated with.
|
| Profile* profile();
|
| @@ -139,6 +139,8 @@ class ExtensionFunctionDispatcher {
|
|
|
| GURL url_;
|
|
|
| + std::string extension_id_;
|
| +
|
| scoped_refptr<Peer> peer_;
|
|
|
| // AutomationExtensionFunction requires access to the RenderViewHost
|
|
|