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 |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 namespace base { | 27 namespace base { |
28 class DictionaryValue; | 28 class DictionaryValue; |
29 } | 29 } |
30 | 30 |
31 namespace content { | 31 namespace content { |
32 class BrowserContext; | 32 class BrowserContext; |
33 class WebContents; | 33 class WebContents; |
34 } | 34 } |
35 | 35 |
36 namespace ui { | |
37 class BaseWindow; | |
38 } | |
39 | |
40 namespace extensions { | 36 namespace extensions { |
41 | 37 |
42 class AppDelegate; | 38 class AppDelegate; |
43 class AppWebContentsHelper; | 39 class AppWebContentsHelper; |
44 class Extension; | 40 class Extension; |
45 class ExtensionRegistry; | |
46 class NativeAppWindow; | 41 class NativeAppWindow; |
47 class PlatformAppBrowserTest; | 42 class PlatformAppBrowserTest; |
48 class WindowController; | |
49 | 43 |
50 struct DraggableRegion; | 44 struct DraggableRegion; |
51 | 45 |
52 // Manages the web contents for app windows. The implementation for this | 46 // Manages the web contents for app windows. The implementation for this |
53 // class should create and maintain the WebContents for the window, and handle | 47 // class should create and maintain the WebContents for the window, and handle |
54 // any message passing between the web contents and the extension system or | 48 // any message passing between the web contents and the extension system or |
55 // native window. | 49 // native window. |
56 class AppWindowContents { | 50 class AppWindowContents { |
57 public: | 51 public: |
58 AppWindowContents() {} | 52 AppWindowContents() {} |
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 bool is_ime_window_; | 563 bool is_ime_window_; |
570 | 564 |
571 base::WeakPtrFactory<AppWindow> image_loader_ptr_factory_; | 565 base::WeakPtrFactory<AppWindow> image_loader_ptr_factory_; |
572 | 566 |
573 DISALLOW_COPY_AND_ASSIGN(AppWindow); | 567 DISALLOW_COPY_AND_ASSIGN(AppWindow); |
574 }; | 568 }; |
575 | 569 |
576 } // namespace extensions | 570 } // namespace extensions |
577 | 571 |
578 #endif // EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ | 572 #endif // EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ |
OLD | NEW |