Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: components/omnibox/browser/autocomplete_controller.cc

Issue 2790993003: Add Generic Implementation of ClipboardRecentContent (Closed)
Patch Set: blank line Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "components/omnibox/browser/autocomplete_controller.h" 5 #include "components/omnibox/browser/autocomplete_controller.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 13 matching lines...) Expand all
24 #include "components/omnibox/browser/clipboard_url_provider.h" 24 #include "components/omnibox/browser/clipboard_url_provider.h"
25 #include "components/omnibox/browser/history_quick_provider.h" 25 #include "components/omnibox/browser/history_quick_provider.h"
26 #include "components/omnibox/browser/history_url_provider.h" 26 #include "components/omnibox/browser/history_url_provider.h"
27 #include "components/omnibox/browser/keyword_provider.h" 27 #include "components/omnibox/browser/keyword_provider.h"
28 #include "components/omnibox/browser/omnibox_field_trial.h" 28 #include "components/omnibox/browser/omnibox_field_trial.h"
29 #include "components/omnibox/browser/physical_web_provider.h" 29 #include "components/omnibox/browser/physical_web_provider.h"
30 #include "components/omnibox/browser/search_provider.h" 30 #include "components/omnibox/browser/search_provider.h"
31 #include "components/omnibox/browser/shortcuts_provider.h" 31 #include "components/omnibox/browser/shortcuts_provider.h"
32 #include "components/omnibox/browser/zero_suggest_provider.h" 32 #include "components/omnibox/browser/zero_suggest_provider.h"
33 #include "components/open_from_clipboard/clipboard_recent_content.h" 33 #include "components/open_from_clipboard/clipboard_recent_content.h"
34 #include "components/open_from_clipboard/clipboard_recent_content_generic.h"
34 #include "components/search_engines/template_url.h" 35 #include "components/search_engines/template_url.h"
35 #include "components/search_engines/template_url_service.h" 36 #include "components/search_engines/template_url_service.h"
36 #include "components/strings/grit/components_strings.h" 37 #include "components/strings/grit/components_strings.h"
37 #include "ui/base/l10n/l10n_util.h" 38 #include "ui/base/l10n/l10n_util.h"
38 39
39 namespace { 40 namespace {
40 41
41 // Converts the given match to a type (and possibly subtype) based on the AQS 42 // Converts the given match to a type (and possibly subtype) based on the AQS
42 // specification. For more details, see 43 // specification. For more details, see
43 // http://goto.google.com/binary-clients-logging. 44 // http://goto.google.com/binary-clients-logging.
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 providers_.push_back(new ShortcutsProvider(provider_client_.get())); 225 providers_.push_back(new ShortcutsProvider(provider_client_.get()));
225 if (provider_types & AutocompleteProvider::TYPE_ZERO_SUGGEST) { 226 if (provider_types & AutocompleteProvider::TYPE_ZERO_SUGGEST) {
226 zero_suggest_provider_ = ZeroSuggestProvider::Create( 227 zero_suggest_provider_ = ZeroSuggestProvider::Create(
227 provider_client_.get(), history_url_provider_, this); 228 provider_client_.get(), history_url_provider_, this);
228 if (zero_suggest_provider_) 229 if (zero_suggest_provider_)
229 providers_.push_back(zero_suggest_provider_); 230 providers_.push_back(zero_suggest_provider_);
230 } 231 }
231 if (provider_types & AutocompleteProvider::TYPE_CLIPBOARD_URL) { 232 if (provider_types & AutocompleteProvider::TYPE_CLIPBOARD_URL) {
232 ClipboardRecentContent* clipboard_recent_content = 233 ClipboardRecentContent* clipboard_recent_content =
233 ClipboardRecentContent::GetInstance(); 234 ClipboardRecentContent::GetInstance();
235 // On iOS, a global ClipboardRecentContent should've been created by now
236 // (if enabled). If none has been created (e.g., we're on a different
237 // platform), use the generic implementation, which AutocompleteController
238 // will own.
239 if (!clipboard_recent_content) {
240 clipboard_recent_content_.reset(new ClipboardRecentContentGeneric());
Peter Kasting 2017/04/01 05:54:28 Nit: Prefer =MakeUnique to reset(new
Mark P 2017/04/02 05:33:56 Done.
241 ClipboardRecentContent::SetInstance(clipboard_recent_content_.get());
242 clipboard_recent_content = clipboard_recent_content_.get();
243 }
234 if (clipboard_recent_content) { 244 if (clipboard_recent_content) {
Peter Kasting 2017/04/01 05:54:28 It seems like this can't fail now and can be remov
Mark P 2017/04/02 05:33:56 Yeah, I agree that it's more trouble than it's wor
235 providers_.push_back(new ClipboardURLProvider(provider_client_.get(), 245 providers_.push_back(new ClipboardURLProvider(provider_client_.get(),
236 history_url_provider_, 246 history_url_provider_,
237 clipboard_recent_content)); 247 clipboard_recent_content));
238 } 248 }
239 } 249 }
240 if (provider_types & AutocompleteProvider::TYPE_PHYSICAL_WEB) { 250 if (provider_types & AutocompleteProvider::TYPE_PHYSICAL_WEB) {
241 PhysicalWebProvider* physical_web_provider = PhysicalWebProvider::Create( 251 PhysicalWebProvider* physical_web_provider = PhysicalWebProvider::Create(
242 provider_client_.get(), history_url_provider_); 252 provider_client_.get(), history_url_provider_);
243 if (physical_web_provider) 253 if (physical_web_provider)
244 providers_.push_back(physical_web_provider); 254 providers_.push_back(physical_web_provider);
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 expire_timer_.Stop(); 692 expire_timer_.Stop();
683 stop_timer_.Stop(); 693 stop_timer_.Stop();
684 done_ = true; 694 done_ = true;
685 if (clear_result && !result_.empty()) { 695 if (clear_result && !result_.empty()) {
686 result_.Reset(); 696 result_.Reset();
687 // NOTE: We pass in false since we're trying to only clear the popup, not 697 // NOTE: We pass in false since we're trying to only clear the popup, not
688 // touch the edit... this is all a mess and should be cleaned up :( 698 // touch the edit... this is all a mess and should be cleaned up :(
689 NotifyChanged(false); 699 NotifyChanged(false);
690 } 700 }
691 } 701 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698