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

Side by Side Diff: chrome/browser/chromeos/contacts/contact_source_observer.h

Issue 10542076: ABANDONED: chromeos: Download contacts (work in progress). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minor changes Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_CONTACTS_CONTACT_SOURCE_OBSERVER_H_
6 #define CHROME_BROWSER_CHROMEOS_CONTACTS_CONTACT_SOURCE_OBSERVER_H_
7
8 #include "base/basictypes.h"
9
10 namespace contacts {
11
12 class ContactSource;
13
14 // Interface for observing changes to a ContactSource.
15 class ContactSourceObserver {
16 public:
17 ContactSourceObserver() {}
18 virtual ~ContactSourceObserver() {}
19
20 // Called when the contacts stored within a ContactSource are updated.
21 virtual void OnContactsUpdated(ContactSource* source) = 0;
22
23 private:
24 DISALLOW_COPY_AND_ASSIGN(ContactSourceObserver);
25 };
26
27 } // namespace contacts
28
29 #endif // CHROME_BROWSER_CHROMEOS_CONTACTS_CONTACT_SOURCE_OBSERVER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/contacts/contact_source.h ('k') | chrome/browser/chromeos/contacts/contact_test_lib.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698