| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_GTK_H_ | 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_GTK_H_ |
| 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_GTK_H_ | 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_GTK_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
| 10 | 10 |
| 11 #include <algorithm> | 11 #include <algorithm> |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "app/gtk_signal.h" | 14 #include "app/gtk_signal.h" |
| 15 #include "app/gtk_signal_registrar.h" | 15 #include "app/gtk_signal_registrar.h" |
| 16 #include "base/basictypes.h" | 16 #include "base/basictypes.h" |
| 17 #include "base/scoped_ptr.h" | 17 #include "base/scoped_ptr.h" |
| 18 #include "base/string_util.h" | 18 #include "base/string_util.h" |
| 19 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" | 19 #include "chrome/browser/autocomplete/autocomplete_edit_view.h" |
| 20 #include "chrome/browser/gtk/owned_widget_gtk.h" | 20 #include "chrome/browser/gtk/owned_widget_gtk.h" |
| 21 #include "chrome/browser/toolbar_model.h" | 21 #include "chrome/browser/ui/toolbar/toolbar_model.h" |
| 22 #include "chrome/common/notification_observer.h" | 22 #include "chrome/common/notification_observer.h" |
| 23 #include "chrome/common/notification_registrar.h" | 23 #include "chrome/common/notification_registrar.h" |
| 24 #include "chrome/common/page_transition_types.h" | 24 #include "chrome/common/page_transition_types.h" |
| 25 #include "gfx/rect.h" | 25 #include "gfx/rect.h" |
| 26 #include "webkit/glue/window_open_disposition.h" | 26 #include "webkit/glue/window_open_disposition.h" |
| 27 | 27 |
| 28 class AutocompleteEditController; | 28 class AutocompleteEditController; |
| 29 class AutocompleteEditModel; | 29 class AutocompleteEditModel; |
| 30 class AutocompletePopupView; | 30 class AutocompletePopupView; |
| 31 class Profile; | 31 class Profile; |
| (...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 // The view that is going to be focused next. Only valid while handling | 478 // The view that is going to be focused next. Only valid while handling |
| 479 // "focus-out" events. | 479 // "focus-out" events. |
| 480 GtkWidget* going_to_focus_; | 480 GtkWidget* going_to_focus_; |
| 481 | 481 |
| 482 GtkSignalRegistrar signals_; | 482 GtkSignalRegistrar signals_; |
| 483 | 483 |
| 484 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditViewGtk); | 484 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditViewGtk); |
| 485 }; | 485 }; |
| 486 | 486 |
| 487 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_GTK_H_ | 487 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_GTK_H_ |
| OLD | NEW |