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

Unified Diff: chrome/browser/autocomplete/autocomplete_controller.cc

Issue 190063004: chromeos: Delete old, unused contacts code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge again Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/autocomplete/autocomplete_match.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autocomplete/autocomplete_controller.cc
diff --git a/chrome/browser/autocomplete/autocomplete_controller.cc b/chrome/browser/autocomplete/autocomplete_controller.cc
index eca78f6bc31e7dc084d5d2726cb3c79340df1231..1f714d13461f3d893bcd3b62776ad509bc363cbf 100644
--- a/chrome/browser/autocomplete/autocomplete_controller.cc
+++ b/chrome/browser/autocomplete/autocomplete_controller.cc
@@ -33,11 +33,6 @@
#include "grit/theme_resources.h"
#include "ui/base/l10n/l10n_util.h"
-#if defined(OS_CHROMEOS)
-#include "chrome/browser/autocomplete/contact_provider_chromeos.h"
-#include "chrome/browser/chromeos/contacts/contact_manager.h"
-#endif
-
namespace {
// Converts the given match to a type (and possibly subtype) based on the AQS
@@ -168,11 +163,6 @@ AutocompleteController::AutocompleteController(
providers_.push_back(new BookmarkProvider(this, profile));
if (provider_types & AutocompleteProvider::TYPE_BUILTIN)
providers_.push_back(new BuiltinProvider(this, profile));
-#if defined(OS_CHROMEOS)
- if (provider_types & AutocompleteProvider::TYPE_CONTACT)
- providers_.push_back(new ContactProvider(this, profile,
- contacts::ContactManager::GetInstance()->GetWeakPtr()));
-#endif
if (provider_types & AutocompleteProvider::TYPE_EXTENSION_APP)
providers_.push_back(new ExtensionAppProvider(this, profile));
if (provider_types & AutocompleteProvider::TYPE_HISTORY_QUICK)
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/autocomplete/autocomplete_match.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698