| 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 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 | 516 |
| 517 // A container that manages the GtkWidget*s of developer tools for the | 517 // A container that manages the GtkWidget*s of developer tools for the |
| 518 // selected tab contents. | 518 // selected tab contents. |
| 519 scoped_ptr<TabContentsContainerGtk> devtools_container_; | 519 scoped_ptr<TabContentsContainerGtk> devtools_container_; |
| 520 | 520 |
| 521 // The Extension Keybinding Registry responsible for registering listeners for | 521 // The Extension Keybinding Registry responsible for registering listeners for |
| 522 // accelerators that are sent to the window, that are destined to be turned | 522 // accelerators that are sent to the window, that are destined to be turned |
| 523 // into events and sent to the extension. | 523 // into events and sent to the extension. |
| 524 scoped_ptr<ExtensionKeybindingRegistryGtk> extension_keybinding_registry_; | 524 scoped_ptr<ExtensionKeybindingRegistryGtk> extension_keybinding_registry_; |
| 525 | 525 |
| 526 DevToolsDockSide devtools_dock_side_; | |
| 527 | |
| 528 // Docked devtools window instance. NULL when current tab is not inspected | 526 // Docked devtools window instance. NULL when current tab is not inspected |
| 529 // or is inspected with undocked version of DevToolsWindow. | 527 // or is inspected with undocked version of DevToolsWindow. |
| 530 DevToolsWindow* devtools_window_; | 528 DevToolsWindow* devtools_window_; |
| 531 | 529 |
| 532 // Split pane containing the contents_container_ and the devtools_container_. | 530 // Split pane containing the contents_container_ and the devtools_container_. |
| 533 // Owned by contents_vsplit_. | 531 // Owned by contents_vsplit_. |
| 534 GtkWidget* contents_hsplit_; | 532 GtkWidget* contents_hsplit_; |
| 535 | 533 |
| 536 // Split pane containing the contents_hsplit_ and the devtools_container_. | 534 // Split pane containing the contents_hsplit_ and the devtools_container_. |
| 537 // Owned by render_area_vbox_. | 535 // Owned by render_area_vbox_. |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 bool is_fullscreen_; | 580 bool is_fullscreen_; |
| 583 | 581 |
| 584 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 582 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 585 | 583 |
| 586 content::NotificationRegistrar registrar_; | 584 content::NotificationRegistrar registrar_; |
| 587 | 585 |
| 588 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 586 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 589 }; | 587 }; |
| 590 | 588 |
| 591 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 589 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |