| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef APPS_APP_WINDOW_H_ | 5 #ifndef APPS_APP_WINDOW_H_ |
| 6 #define APPS_APP_WINDOW_H_ | 6 #define APPS_APP_WINDOW_H_ |
| 7 | 7 |
| 8 #include <string> |
| 9 #include <vector> |
| 10 |
| 8 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 10 #include "chrome/browser/sessions/session_id.h" | 13 #include "chrome/browser/sessions/session_id.h" |
| 11 #include "components/web_modal/popup_manager.h" | 14 #include "components/web_modal/popup_manager.h" |
| 12 #include "components/web_modal/web_contents_modal_dialog_manager_delegate.h" | 15 #include "components/web_modal/web_contents_modal_dialog_manager_delegate.h" |
| 13 #include "content/public/browser/notification_observer.h" | 16 #include "content/public/browser/notification_observer.h" |
| 14 #include "content/public/browser/notification_registrar.h" | 17 #include "content/public/browser/notification_registrar.h" |
| 15 #include "content/public/browser/web_contents_delegate.h" | 18 #include "content/public/browser/web_contents_delegate.h" |
| 16 #include "content/public/browser/web_contents_observer.h" | 19 #include "content/public/browser/web_contents_observer.h" |
| 17 #include "content/public/common/console_message_level.h" | 20 #include "content/public/common/console_message_level.h" |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 // reinstated when the window exits fullscreen and moves away from the | 565 // reinstated when the window exits fullscreen and moves away from the |
| 563 // taskbar. | 566 // taskbar. |
| 564 bool cached_always_on_top_; | 567 bool cached_always_on_top_; |
| 565 | 568 |
| 566 DISALLOW_COPY_AND_ASSIGN(AppWindow); | 569 DISALLOW_COPY_AND_ASSIGN(AppWindow); |
| 567 }; | 570 }; |
| 568 | 571 |
| 569 } // namespace apps | 572 } // namespace apps |
| 570 | 573 |
| 571 #endif // APPS_APP_WINDOW_H_ | 574 #endif // APPS_APP_WINDOW_H_ |
| OLD | NEW |