Index: content/shell/shell.h |
diff --git a/content/shell/shell.h b/content/shell/shell.h |
index 53e473fa59aaa8f3e923bbeb3070504b13bbb7c7..e94d11e6e7cc5e57c64bb9b75099fbbdd70b82ef 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; |
jam
2012/07/23 14:39:46
nit: no indentation here and above
|
+ } |
+} |
#endif |
class GURL; |
@@ -195,6 +205,11 @@ class Shell : public WebContentsDelegate, |
int content_height_; |
#elif defined(OS_ANDROID) |
base::android::ScopedJavaGlobalRef<jobject> java_object_; |
+#elif defined(USE_AURA) |
+ static scoped_ptr<aura::client::StackingClient> stacking_client_; |
+ static scoped_ptr<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 |