OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_UI_PANELS_PANEL_H_ | 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_H_ |
6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_ | 6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
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 "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "chrome/browser/command_updater.h" | 14 #include "chrome/browser/command_updater.h" |
15 #include "chrome/browser/command_updater_delegate.h" | 15 #include "chrome/browser/command_updater_delegate.h" |
16 #include "chrome/browser/ui/panels/panel_constants.h" | 16 #include "chrome/browser/ui/panels/panel_constants.h" |
17 #include "components/sessions/session_id.h" | 17 #include "components/sessions/session_id.h" |
18 #include "content/public/browser/notification_observer.h" | 18 #include "content/public/browser/notification_observer.h" |
19 #include "content/public/browser/notification_registrar.h" | 19 #include "content/public/browser/notification_registrar.h" |
20 #include "extensions/browser/extension_registry_observer.h" | 20 #include "extensions/browser/extension_registry_observer.h" |
21 #include "ui/base/base_window.h" | 21 #include "ui/base/base_window.h" |
| 22 #include "ui/gfx/geometry/rect.h" |
22 #include "ui/gfx/image/image.h" | 23 #include "ui/gfx/image/image.h" |
23 #include "ui/gfx/rect.h" | |
24 | 24 |
25 class GURL; | 25 class GURL; |
26 class NativePanel; | 26 class NativePanel; |
27 class PanelCollection; | 27 class PanelCollection; |
28 class PanelHost; | 28 class PanelHost; |
29 class PanelManager; | 29 class PanelManager; |
30 class Profile; | 30 class Profile; |
31 class StackedPanelCollection; | 31 class StackedPanelCollection; |
32 | 32 |
33 namespace content { | 33 namespace content { |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 | 403 |
404 // Icon showed in the task bar. | 404 // Icon showed in the task bar. |
405 gfx::Image app_icon_; | 405 gfx::Image app_icon_; |
406 | 406 |
407 base::WeakPtrFactory<Panel> image_loader_ptr_factory_; | 407 base::WeakPtrFactory<Panel> image_loader_ptr_factory_; |
408 | 408 |
409 DISALLOW_COPY_AND_ASSIGN(Panel); | 409 DISALLOW_COPY_AND_ASSIGN(Panel); |
410 }; | 410 }; |
411 | 411 |
412 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 412 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
OLD | NEW |