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 #include "chrome/browser/ui/views/tabs/browser_tab_strip_controller.h" | 5 #include "chrome/browser/ui/views/tabs/browser_tab_strip_controller.h" |
6 | 6 |
7 #include "base/auto_reset.h" | 7 #include "base/auto_reset.h" |
8 #include "base/prefs/pref_service.h" | 8 #include "base/prefs/pref_service.h" |
9 #include "base/task_runner_util.h" | 9 #include "base/task_runner_util.h" |
10 #include "base/threading/sequenced_worker_pool.h" | 10 #include "base/threading/sequenced_worker_pool.h" |
11 #include "chrome/browser/autocomplete/autocomplete_classifier.h" | 11 #include "chrome/browser/autocomplete/autocomplete_classifier.h" |
12 #include "chrome/browser/autocomplete/autocomplete_classifier_factory.h" | 12 #include "chrome/browser/autocomplete/autocomplete_classifier_factory.h" |
13 #include "chrome/browser/autocomplete/autocomplete_input.h" | |
14 #include "chrome/browser/autocomplete/autocomplete_match.h" | 13 #include "chrome/browser/autocomplete/autocomplete_match.h" |
15 #include "chrome/browser/browser_process.h" | 14 #include "chrome/browser/browser_process.h" |
16 #include "chrome/browser/chrome_notification_types.h" | 15 #include "chrome/browser/chrome_notification_types.h" |
17 #include "chrome/browser/extensions/tab_helper.h" | 16 #include "chrome/browser/extensions/tab_helper.h" |
18 #include "chrome/browser/favicon/favicon_tab_helper.h" | 17 #include "chrome/browser/favicon/favicon_tab_helper.h" |
19 #include "chrome/browser/profiles/profile.h" | 18 #include "chrome/browser/profiles/profile.h" |
20 #include "chrome/browser/search/search.h" | 19 #include "chrome/browser/search/search.h" |
21 #include "chrome/browser/ui/browser.h" | 20 #include "chrome/browser/ui/browser.h" |
22 #include "chrome/browser/ui/browser_tabstrip.h" | 21 #include "chrome/browser/ui/browser_tabstrip.h" |
23 #include "chrome/browser/ui/tabs/tab_menu_model.h" | 22 #include "chrome/browser/ui/tabs/tab_menu_model.h" |
24 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 23 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
25 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h" | 24 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h" |
26 #include "chrome/browser/ui/tabs/tab_utils.h" | 25 #include "chrome/browser/ui/tabs/tab_utils.h" |
27 #include "chrome/browser/ui/views/frame/browser_view.h" | 26 #include "chrome/browser/ui/views/frame/browser_view.h" |
28 #include "chrome/browser/ui/views/tabs/tab.h" | 27 #include "chrome/browser/ui/views/tabs/tab.h" |
29 #include "chrome/browser/ui/views/tabs/tab_renderer_data.h" | 28 #include "chrome/browser/ui/views/tabs/tab_renderer_data.h" |
30 #include "chrome/browser/ui/views/tabs/tab_strip.h" | 29 #include "chrome/browser/ui/views/tabs/tab_strip.h" |
31 #include "chrome/common/pref_names.h" | 30 #include "chrome/common/pref_names.h" |
32 #include "chrome/common/url_constants.h" | 31 #include "chrome/common/url_constants.h" |
| 32 #include "components/metrics/proto/omnibox_event.pb.h" |
33 #include "content/public/browser/browser_thread.h" | 33 #include "content/public/browser/browser_thread.h" |
34 #include "content/public/browser/notification_service.h" | 34 #include "content/public/browser/notification_service.h" |
35 #include "content/public/browser/plugin_service.h" | 35 #include "content/public/browser/plugin_service.h" |
36 #include "content/public/browser/user_metrics.h" | 36 #include "content/public/browser/user_metrics.h" |
37 #include "content/public/browser/web_contents.h" | 37 #include "content/public/browser/web_contents.h" |
38 #include "content/public/common/webplugininfo.h" | 38 #include "content/public/common/webplugininfo.h" |
39 #include "ipc/ipc_message.h" | 39 #include "ipc/ipc_message.h" |
40 #include "net/base/filename_util.h" | 40 #include "net/base/filename_util.h" |
41 #include "ui/base/models/list_selection_model.h" | 41 #include "ui/base/models/list_selection_model.h" |
42 #include "ui/gfx/image/image.h" | 42 #include "ui/gfx/image/image.h" |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 void BrowserTabStripController::CreateNewTab() { | 363 void BrowserTabStripController::CreateNewTab() { |
364 model_->delegate()->AddTabAt(GURL(), -1, true); | 364 model_->delegate()->AddTabAt(GURL(), -1, true); |
365 } | 365 } |
366 | 366 |
367 void BrowserTabStripController::CreateNewTabWithLocation( | 367 void BrowserTabStripController::CreateNewTabWithLocation( |
368 const base::string16& location) { | 368 const base::string16& location) { |
369 // Use autocomplete to clean up the text, going so far as to turn it into | 369 // Use autocomplete to clean up the text, going so far as to turn it into |
370 // a search query if necessary. | 370 // a search query if necessary. |
371 AutocompleteMatch match; | 371 AutocompleteMatch match; |
372 AutocompleteClassifierFactory::GetForProfile(profile())->Classify( | 372 AutocompleteClassifierFactory::GetForProfile(profile())->Classify( |
373 location, false, false, AutocompleteInput::BLANK, &match, NULL); | 373 location, false, false, metrics::OmniboxEventProto::BLANK, &match, NULL); |
374 if (match.destination_url.is_valid()) | 374 if (match.destination_url.is_valid()) |
375 model_->delegate()->AddTabAt(match.destination_url, -1, true); | 375 model_->delegate()->AddTabAt(match.destination_url, -1, true); |
376 } | 376 } |
377 | 377 |
378 bool BrowserTabStripController::IsIncognito() { | 378 bool BrowserTabStripController::IsIncognito() { |
379 return browser_->profile()->IsOffTheRecord(); | 379 return browser_->profile()->IsOffTheRecord(); |
380 } | 380 } |
381 | 381 |
382 void BrowserTabStripController::StackedLayoutMaybeChanged() { | 382 void BrowserTabStripController::StackedLayoutMaybeChanged() { |
383 bool adjust_layout = false; | 383 bool adjust_layout = false; |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
579 url, | 579 url, |
580 mime_type.empty() || | 580 mime_type.empty() || |
581 net::IsSupportedMimeType(mime_type) || | 581 net::IsSupportedMimeType(mime_type) || |
582 content::PluginService::GetInstance()->GetPluginInfo( | 582 content::PluginService::GetInstance()->GetPluginInfo( |
583 -1, // process ID | 583 -1, // process ID |
584 MSG_ROUTING_NONE, // routing ID | 584 MSG_ROUTING_NONE, // routing ID |
585 model_->profile()->GetResourceContext(), | 585 model_->profile()->GetResourceContext(), |
586 url, GURL(), mime_type, false, | 586 url, GURL(), mime_type, false, |
587 NULL, &plugin, NULL)); | 587 NULL, &plugin, NULL)); |
588 } | 588 } |
OLD | NEW |