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 #include "chrome/browser/ui/views/frame/browser_root_view.h" | 5 #include "chrome/browser/ui/views/frame/browser_root_view.h" |
6 | 6 |
7 #include "app/drag_drop_types.h" | 7 #include "app/drag_drop_types.h" |
8 #include "app/l10n_util.h" | 8 #include "app/l10n_util.h" |
9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
10 #include "chrome/browser/autocomplete/autocomplete.h" | 10 #include "chrome/browser/autocomplete/autocomplete.h" |
11 #include "chrome/browser/autocomplete/autocomplete_classifier.h" | 11 #include "chrome/browser/autocomplete/autocomplete_classifier.h" |
12 #include "chrome/browser/autocomplete/autocomplete_match.h" | 12 #include "chrome/browser/autocomplete/autocomplete_match.h" |
13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
14 #include "chrome/browser/ui/omnibox/location_bar.h" | 14 #include "chrome/browser/ui/omnibox/location_bar.h" |
| 15 #include "chrome/browser/ui/views/frame/browser_frame.h" |
15 #include "chrome/browser/ui/views/frame/browser_view.h" | 16 #include "chrome/browser/ui/views/frame/browser_view.h" |
16 #include "chrome/browser/ui/views/frame/browser_frame.h" | |
17 #include "chrome/browser/ui/views/tabs/tab_strip.h" | 17 #include "chrome/browser/ui/views/tabs/tab_strip.h" |
18 #include "grit/chromium_strings.h" | 18 #include "grit/chromium_strings.h" |
19 #include "ui/base/dragdrop/os_exchange_data.h" | 19 #include "ui/base/dragdrop/os_exchange_data.h" |
20 | 20 |
21 BrowserRootView::BrowserRootView(BrowserView* browser_view, | 21 BrowserRootView::BrowserRootView(BrowserView* browser_view, |
22 views::Widget* widget) | 22 views::Widget* widget) |
23 : views::RootView(widget), | 23 : views::RootView(widget), |
24 browser_view_(browser_view), | 24 browser_view_(browser_view), |
25 forwarding_to_tab_strip_(false) { | 25 forwarding_to_tab_strip_(false) { |
26 SetAccessibleName(l10n_util::GetStringUTF16(IDS_PRODUCT_NAME)); | 26 SetAccessibleName(l10n_util::GetStringUTF16(IDS_PRODUCT_NAME)); |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 AutocompleteMatch match; | 148 AutocompleteMatch match; |
149 browser_view_->browser()->profile()->GetAutocompleteClassifier()->Classify( | 149 browser_view_->browser()->profile()->GetAutocompleteClassifier()->Classify( |
150 text, std::wstring(), false, &match, NULL); | 150 text, std::wstring(), false, &match, NULL); |
151 if (!match.destination_url.is_valid()) | 151 if (!match.destination_url.is_valid()) |
152 return false; | 152 return false; |
153 | 153 |
154 if (url) | 154 if (url) |
155 *url = match.destination_url; | 155 *url = match.destination_url; |
156 return true; | 156 return true; |
157 } | 157 } |
OLD | NEW |