| 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_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> | 
|   11  |   11  | 
|   12 #include "base/basictypes.h" |   12 #include "base/basictypes.h" | 
|   13 #include "base/compiler_specific.h" |   13 #include "base/compiler_specific.h" | 
|   14 #include "base/memory/scoped_ptr.h" |   14 #include "base/memory/scoped_ptr.h" | 
|   15 #include "base/timer.h" |   15 #include "base/timer.h" | 
|   16 #include "build/build_config.h" |   16 #include "build/build_config.h" | 
 |   17 #include "chrome/browser/api/prefs/pref_member.h" | 
|   17 #include "chrome/browser/infobars/infobar_container.h" |   18 #include "chrome/browser/infobars/infobar_container.h" | 
|   18 #include "chrome/browser/prefs/pref_member.h" |  | 
|   19 #include "chrome/browser/ui/browser_window.h" |   19 #include "chrome/browser/ui/browser_window.h" | 
|   20 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |   20 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" | 
|   21 #include "ui/base/gtk/gtk_signal.h" |   21 #include "ui/base/gtk/gtk_signal.h" | 
|   22 #include "ui/base/ui_base_types.h" |   22 #include "ui/base/ui_base_types.h" | 
|   23 #include "ui/base/x/active_window_watcher_x_observer.h" |   23 #include "ui/base/x/active_window_watcher_x_observer.h" | 
|   24 #include "ui/base/x/x11_util.h" |   24 #include "ui/base/x/x11_util.h" | 
|   25 #include "ui/gfx/rect.h" |   25 #include "ui/gfx/rect.h" | 
|   26  |   26  | 
|   27 class BookmarkBarGtk; |   27 class BookmarkBarGtk; | 
|   28 class Browser; |   28 class Browser; | 
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  572   scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |  572   scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 
|  573  |  573  | 
|  574   FullscreenExitBubbleType fullscreen_exit_bubble_type_; |  574   FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 
|  575  |  575  | 
|  576   content::NotificationRegistrar registrar_; |  576   content::NotificationRegistrar registrar_; | 
|  577  |  577  | 
|  578   DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |  578   DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 
|  579 }; |  579 }; | 
|  580  |  580  | 
|  581 #endif  // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |  581 #endif  // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 
| OLD | NEW |