| Index: chrome/browser/extensions/extension_host.h
|
| diff --git a/chrome/browser/extensions/extension_host.h b/chrome/browser/extensions/extension_host.h
|
| index 82a109462214fffc7066e47438c88f390879172c..c91b19e250e3098a85de019ed5bd3a66d5516be3 100644
|
| --- a/chrome/browser/extensions/extension_host.h
|
| +++ b/chrome/browser/extensions/extension_host.h
|
| @@ -26,6 +26,8 @@
|
| #include "chrome/browser/ui/cocoa/extensions/extension_view_mac.h"
|
| #elif defined(TOOLKIT_GTK)
|
| #include "chrome/browser/ui/gtk/extensions/extension_view_gtk.h"
|
| +#elif defined(OS_ANDROID)
|
| +#include "chrome/browser/ui/android/extensions/extension_view_android.h"
|
| #endif
|
|
|
| class Browser;
|
| @@ -58,7 +60,7 @@ class ExtensionHost : public content::WebContentsDelegate,
|
| typedef ExtensionViewGtk PlatformExtensionView;
|
| #elif defined(OS_ANDROID)
|
| // Android does not support extensions.
|
| - typedef void* PlatformExtensionView;
|
| + typedef ExtensionViewAndroid PlatformExtensionView;
|
| #endif
|
|
|
| ExtensionHost(const Extension* extension,
|
|
|