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_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/gtest_prod_util.h" |
12 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
14 #include "chrome/browser/ui/toolbar/chrome_toolbar_model.h" | 15 #include "chrome/browser/ui/toolbar/chrome_toolbar_model.h" |
15 #include "components/omnibox/browser/omnibox_view.h" | 16 #include "components/omnibox/browser/omnibox_view.h" |
16 #include "ui/base/window_open_disposition.h" | 17 #include "ui/base/window_open_disposition.h" |
17 #include "ui/gfx/range/range.h" | 18 #include "ui/gfx/range/range.h" |
18 #include "ui/views/controls/textfield/textfield.h" | 19 #include "ui/views/controls/textfield/textfield.h" |
19 #include "ui/views/controls/textfield/textfield_controller.h" | 20 #include "ui/views/controls/textfield/textfield_controller.h" |
20 | 21 |
21 #if defined(OS_CHROMEOS) | 22 #if defined(OS_CHROMEOS) |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 // painted. Used to measure omnibox responsiveness with a histogram. | 246 // painted. Used to measure omnibox responsiveness with a histogram. |
246 base::TimeTicks insert_char_time_; | 247 base::TimeTicks insert_char_time_; |
247 | 248 |
248 // Used to bind callback functions to this object. | 249 // Used to bind callback functions to this object. |
249 base::WeakPtrFactory<OmniboxViewViews> weak_ptr_factory_; | 250 base::WeakPtrFactory<OmniboxViewViews> weak_ptr_factory_; |
250 | 251 |
251 DISALLOW_COPY_AND_ASSIGN(OmniboxViewViews); | 252 DISALLOW_COPY_AND_ASSIGN(OmniboxViewViews); |
252 }; | 253 }; |
253 | 254 |
254 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ | 255 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ |
OLD | NEW |