| 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 EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ | 5 #ifndef EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ |
| 6 #define EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ | 6 #define EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "components/sessions/session_id.h" | 13 #include "components/sessions/core/session_id.h" |
| 14 #include "components/web_modal/web_contents_modal_dialog_manager_delegate.h" | 14 #include "components/web_modal/web_contents_modal_dialog_manager_delegate.h" |
| 15 #include "content/public/browser/web_contents_delegate.h" | 15 #include "content/public/browser/web_contents_delegate.h" |
| 16 #include "content/public/browser/web_contents_observer.h" | 16 #include "content/public/browser/web_contents_observer.h" |
| 17 #include "extensions/browser/extension_function_dispatcher.h" | 17 #include "extensions/browser/extension_function_dispatcher.h" |
| 18 #include "extensions/browser/extension_icon_image.h" | 18 #include "extensions/browser/extension_icon_image.h" |
| 19 #include "extensions/browser/extension_registry_observer.h" | 19 #include "extensions/browser/extension_registry_observer.h" |
| 20 #include "ui/base/ui_base_types.h" // WindowShowState | 20 #include "ui/base/ui_base_types.h" // WindowShowState |
| 21 #include "ui/gfx/geometry/rect.h" | 21 #include "ui/gfx/geometry/rect.h" |
| 22 #include "ui/gfx/image/image.h" | 22 #include "ui/gfx/image/image.h" |
| 23 | 23 |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 base::Closure on_first_commit_callback_; | 562 base::Closure on_first_commit_callback_; |
| 563 | 563 |
| 564 base::WeakPtrFactory<AppWindow> image_loader_ptr_factory_; | 564 base::WeakPtrFactory<AppWindow> image_loader_ptr_factory_; |
| 565 | 565 |
| 566 DISALLOW_COPY_AND_ASSIGN(AppWindow); | 566 DISALLOW_COPY_AND_ASSIGN(AppWindow); |
| 567 }; | 567 }; |
| 568 | 568 |
| 569 } // namespace extensions | 569 } // namespace extensions |
| 570 | 570 |
| 571 #endif // EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ | 571 #endif // EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ |
| OLD | NEW |