Index: content/shell/shell.h |
diff --git a/content/shell/shell.h b/content/shell/shell.h |
index 1ac10fc7108fc2bc31bc0b30ce75e480ce535e4e..28e7dca887301b9608a5a187d57407d509af7897 100644 |
--- a/content/shell/shell.h |
+++ b/content/shell/shell.h |
@@ -24,6 +24,16 @@ |
typedef struct _GtkToolItem GtkToolItem; |
#elif defined(OS_ANDROID) |
#include "base/android/scoped_java_ref.h" |
+#elif defined(USE_AURA) |
+namespace views { |
+class Widget; |
+class ViewsDelegate; |
+} |
+namespace aura { |
+namespace client { |
+class StackingClient; |
+} |
+} |
#endif |
class GURL; |
@@ -196,6 +206,11 @@ class Shell : public WebContentsDelegate, |
int content_height_; |
#elif defined(OS_ANDROID) |
base::android::ScopedJavaGlobalRef<jobject> java_object_; |
+#elif defined(USE_AURA) |
+ static aura::client::StackingClient* stacking_client_; |
+ static views::ViewsDelegate* views_delegate_; |
+ |
+ views::Widget* window_widget_; |
#endif |
// A container of all the open windows. We use a vector so we can keep track |