Index: content/shell/shell.h |
diff --git a/content/shell/shell.h b/content/shell/shell.h |
index c1831689e1a42f3883f6a1e9e470e15d11ac85cb..a15430d0b17b9a5d2bbe48fa812fbebb980593f3 100644 |
--- a/content/shell/shell.h |
+++ b/content/shell/shell.h |
@@ -21,6 +21,8 @@ |
#include "ui/base/gtk/gtk_signal.h" |
typedef struct _GtkToolItem GtkToolItem; |
+#elif defined(OS_ANDROID) |
+#include "content/shell/android/shell_view.h" |
#endif |
class GURL; |
@@ -177,6 +179,8 @@ class Shell : public WebContentsDelegate, |
int content_width_; |
int content_height_; |
+#elif defined(OS_ANDROID) |
+ scoped_ptr<ShellView> shell_view_; |
#endif |
// A container of all the open windows. We use a vector so we can keep track |