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

Unified Diff: chrome/browser/chromeos/contacts/contact_manager_stub.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
Index: chrome/browser/chromeos/contacts/contact_manager_stub.cc
diff --git a/chrome/browser/chromeos/contacts/contact_manager_stub.cc b/chrome/browser/chromeos/contacts/contact_manager_stub.cc
deleted file mode 100644
index 0ce8248a0ccc54bd2c99c4730715036f4de1fd3a..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/contacts/contact_manager_stub.cc
+++ /dev/null
@@ -1,81 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/chromeos/contacts/contact_manager_stub.h"
-
-#include "base/logging.h"
-#include "chrome/browser/browser_process.h"
-#include "chrome/browser/chromeos/contacts/contact.pb.h"
-#include "chrome/browser/chromeos/contacts/contact_manager_observer.h"
-#include "chrome/browser/chromeos/contacts/contact_test_util.h"
-#include "chrome/browser/profiles/profile.h"
-#include "content/public/browser/browser_thread.h"
-
-using content::BrowserThread;
-
-namespace contacts {
-
-ContactManagerStub::ContactManagerStub(Profile* profile)
- : profile_(profile),
- weak_ptr_factory_(this) {
-}
-
-ContactManagerStub::~ContactManagerStub() {}
-
-void ContactManagerStub::NotifyObserversAboutUpdatedContacts() {
- FOR_EACH_OBSERVER(ContactManagerObserver,
- observers_,
- OnContactsUpdated(profile_));
-}
-
-void ContactManagerStub::SetContacts(const ContactPointers& contacts) {
- test::CopyContacts(contacts, &contacts_);
-}
-
-base::WeakPtr<ContactManagerInterface> ContactManagerStub::GetWeakPtr() {
- CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- return weak_ptr_factory_.GetWeakPtr();
-}
-
-void ContactManagerStub::AddObserver(ContactManagerObserver* observer,
- Profile* profile) {
- CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- CHECK(observer);
- CHECK_EQ(profile, profile_);
- CHECK(!observers_.HasObserver(observer));
- observers_.AddObserver(observer);
-}
-
-void ContactManagerStub::RemoveObserver(ContactManagerObserver* observer,
- Profile* profile) {
- CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- CHECK(observer);
- CHECK_EQ(profile, profile_);
- CHECK(observers_.HasObserver(observer));
- observers_.RemoveObserver(observer);
-}
-
-scoped_ptr<ContactPointers> ContactManagerStub::GetAllContacts(
- Profile* profile) {
- CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- CHECK_EQ(profile, profile_);
- scoped_ptr<ContactPointers> contacts(new ContactPointers);
- for (size_t i = 0; i < contacts_.size(); ++i)
- contacts->push_back(contacts_[i]);
- return contacts.Pass();
-}
-
-const Contact* ContactManagerStub::GetContactById(
- Profile* profile,
- const std::string& contact_id) {
- CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- CHECK_EQ(profile, profile_);
- for (size_t i = 0; i < contacts_.size(); ++i) {
- if (contacts_[i]->contact_id() == contact_id)
- return contacts_[i];
- }
- return NULL;
-}
-
-} // namespace contacts
« no previous file with comments | « chrome/browser/chromeos/contacts/contact_manager_stub.h ('k') | chrome/browser/chromeos/contacts/contact_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698