summaryrefslogtreecommitdiffstats
path: root/components/gcm_driver/gcm_driver_android.cc
diff options
context:
space:
mode:
authorfgorski <fgorski@chromium.org>2014-09-29 09:46:18 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-29 16:46:31 +0000
commit58b9dfcdec72d65fe130738df1ba372fcc720824 (patch)
treeade1989b98196af26f251e19099b5956ede5dd4e /components/gcm_driver/gcm_driver_android.cc
parent3e698a5483f2f1a1aa5c0a474ac12475ba77dc41 (diff)
downloadchromium_src-58b9dfcdec72d65fe130738df1ba372fcc720824.zip
chromium_src-58b9dfcdec72d65fe130738df1ba372fcc720824.tar.gz
chromium_src-58b9dfcdec72d65fe130738df1ba372fcc720824.tar.bz2
[GCM] Passing GCMClient::AccountTokenInfo list to GCMDriver
* Making sure GCMAccountTracker is only depenedent on the GCMDriver * Replacing GCMDesktopDriver.SetAccountsForCheckin with virtual GCMDesktop.SetAccountTokens * Producing a vector of AccountTokenInfo in GCMAccountTracker BUG=374969 R=jianli@chromium.org Review URL: https://codereview.chromium.org/594383003 Cr-Commit-Position: refs/heads/master@{#297190}
Diffstat (limited to 'components/gcm_driver/gcm_driver_android.cc')
-rw-r--r--components/gcm_driver/gcm_driver_android.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/components/gcm_driver/gcm_driver_android.cc b/components/gcm_driver/gcm_driver_android.cc
index d855363..d7fc912 100644
--- a/components/gcm_driver/gcm_driver_android.cc
+++ b/components/gcm_driver/gcm_driver_android.cc
@@ -136,11 +136,18 @@ void GCMDriverAndroid::SetGCMRecording(const GetGCMStatisticsCallback& callback,
NOTIMPLEMENTED();
}
+void GCMDriverAndroid::SetAccountTokens(
+ const std::vector<GCMClient::AccountTokenInfo>& account_tokens) {
+ NOTIMPLEMENTED();
+}
+
void GCMDriverAndroid::UpdateAccountMapping(
const AccountMapping& account_mapping) {
+ NOTIMPLEMENTED();
}
void GCMDriverAndroid::RemoveAccountMapping(const std::string& account_id) {
+ NOTIMPLEMENTED();
}
GCMClient::Result GCMDriverAndroid::EnsureStarted() {