OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_GTK_BROWSER_WINDOW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
7 | 7 |
8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 20 matching lines...) Expand all Loading... |
31 class Browser; | 31 class Browser; |
32 class BrowserTitlebar; | 32 class BrowserTitlebar; |
33 class BrowserToolbarGtk; | 33 class BrowserToolbarGtk; |
34 class DevToolsWindow; | 34 class DevToolsWindow; |
35 class DownloadShelfGtk; | 35 class DownloadShelfGtk; |
36 class ExtensionKeybindingRegistryGtk; | 36 class ExtensionKeybindingRegistryGtk; |
37 class FindBarGtk; | 37 class FindBarGtk; |
38 class FullscreenExitBubbleGtk; | 38 class FullscreenExitBubbleGtk; |
39 class GlobalMenuBar; | 39 class GlobalMenuBar; |
40 class InfoBarContainerGtk; | 40 class InfoBarContainerGtk; |
41 class InstantPreviewControllerGtk; | 41 class InstantOverlayControllerGtk; |
42 class LocationBar; | 42 class LocationBar; |
43 class PrefRegistrySyncable; | 43 class PrefRegistrySyncable; |
44 class StatusBubbleGtk; | 44 class StatusBubbleGtk; |
45 class TabContentsContainerGtk; | 45 class TabContentsContainerGtk; |
46 class TabStripGtk; | 46 class TabStripGtk; |
47 | 47 |
48 namespace autofill { | 48 namespace autofill { |
49 class PasswordGenerator; | 49 class PasswordGenerator; |
50 } | 50 } |
51 | 51 |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 | 502 |
503 // A container that manages the GtkWidget*s that are the webpage display | 503 // A container that manages the GtkWidget*s that are the webpage display |
504 // (along with associated infobars, shelves, and other things that are part | 504 // (along with associated infobars, shelves, and other things that are part |
505 // of the content area). | 505 // of the content area). |
506 scoped_ptr<TabContentsContainerGtk> contents_container_; | 506 scoped_ptr<TabContentsContainerGtk> contents_container_; |
507 | 507 |
508 // A container that manages the GtkWidget*s of developer tools for the | 508 // A container that manages the GtkWidget*s of developer tools for the |
509 // selected tab contents. | 509 // selected tab contents. |
510 scoped_ptr<TabContentsContainerGtk> devtools_container_; | 510 scoped_ptr<TabContentsContainerGtk> devtools_container_; |
511 | 511 |
512 // A sub-controller that manages the Instant preview visual state. | 512 // A sub-controller that manages the Instant overlay visual state. |
513 scoped_ptr<InstantPreviewControllerGtk> instant_preview_controller_; | 513 scoped_ptr<InstantOverlayControllerGtk> instant_overlay_controller_; |
514 | 514 |
515 // The Extension Keybinding Registry responsible for registering listeners for | 515 // The Extension Keybinding Registry responsible for registering listeners for |
516 // accelerators that are sent to the window, that are destined to be turned | 516 // accelerators that are sent to the window, that are destined to be turned |
517 // into events and sent to the extension. | 517 // into events and sent to the extension. |
518 scoped_ptr<ExtensionKeybindingRegistryGtk> extension_keybinding_registry_; | 518 scoped_ptr<ExtensionKeybindingRegistryGtk> extension_keybinding_registry_; |
519 | 519 |
520 DevToolsDockSide devtools_dock_side_; | 520 DevToolsDockSide devtools_dock_side_; |
521 | 521 |
522 // Docked devtools window instance. NULL when current tab is not inspected | 522 // Docked devtools window instance. NULL when current tab is not inspected |
523 // or is inspected with undocked version of DevToolsWindow. | 523 // or is inspected with undocked version of DevToolsWindow. |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
570 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 570 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
571 | 571 |
572 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 572 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
573 | 573 |
574 content::NotificationRegistrar registrar_; | 574 content::NotificationRegistrar registrar_; |
575 | 575 |
576 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 576 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
577 }; | 577 }; |
578 | 578 |
579 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 579 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
OLD | NEW |