OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_OMNIBOX_OMNIBOX_VIEW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_OMNIBOX_OMNIBOX_VIEW_GTK_H_ |
6 #define CHROME_BROWSER_UI_GTK_OMNIBOX_OMNIBOX_VIEW_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_OMNIBOX_OMNIBOX_VIEW_GTK_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
10 | 10 |
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 // to track pre-edit_'s content, as it'll be treated as part of text content. | 539 // to track pre-edit_'s content, as it'll be treated as part of text content. |
540 size_t pre_edit_size_before_change_; | 540 size_t pre_edit_size_before_change_; |
541 #endif | 541 #endif |
542 | 542 |
543 // The view that is going to be focused next. Only valid while handling | 543 // The view that is going to be focused next. Only valid while handling |
544 // "focus-out" events. | 544 // "focus-out" events. |
545 GtkWidget* going_to_focus_; | 545 GtkWidget* going_to_focus_; |
546 | 546 |
547 ui::GtkSignalRegistrar signals_; | 547 ui::GtkSignalRegistrar signals_; |
548 | 548 |
| 549 GtkTargetList* copy_targets_; |
| 550 |
549 DISALLOW_COPY_AND_ASSIGN(OmniboxViewGtk); | 551 DISALLOW_COPY_AND_ASSIGN(OmniboxViewGtk); |
550 }; | 552 }; |
551 | 553 |
552 #endif // CHROME_BROWSER_UI_GTK_OMNIBOX_OMNIBOX_VIEW_GTK_H_ | 554 #endif // CHROME_BROWSER_UI_GTK_OMNIBOX_OMNIBOX_VIEW_GTK_H_ |
OLD | NEW |