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

Unified Diff: chrome/browser/notifier/synced_notification.cc

Issue 11745024: Synced Notification Sync Change Processor (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 12 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/notifier/synced_notification.cc
diff --git a/chrome/browser/notifier/synced_notification.cc b/chrome/browser/notifier/synced_notification.cc
new file mode 100644
index 0000000000000000000000000000000000000000..8d60ed0e08e1f082fdfcd4745b3cbbfa8da840d7
--- /dev/null
+++ b/chrome/browser/notifier/synced_notification.cc
@@ -0,0 +1,145 @@
+// 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/notifier/synced_notification.h"
+
+#include "sync/protocol/sync.pb.h"
+#include "sync/protocol/synced_notification_specifics.pb.h"
+
+using namespace sync_pb;
+
+SyncedNotification::SyncedNotification(const syncer::SyncData sync_data)
+ : sync_data_(sync_data), has_local_changes_(false) {
+}
+
+SyncedNotification::~SyncedNotification() {}
+
+void SyncedNotification::NotificationHasBeenRead() {
+ // We set the is_local_ flag to true since we modified it locally
+ // then we create a sync change object to pass back up
+ // TODO(petewil): Implement.
+}
+
+void SyncedNotification::NotificationHasBeenDeleted() {
+ // We set the is_deleted_ flag to true since we modified it locally
+ // then we create a sync change object to pass back up.
+ // TODO(petewil): Implement.
+}
+
+// TODO(petewil): Consider whether the repeated code below can be re-used.
+// A first attempt to do so failed.
+
+const SyncedNotificationSpecifics*
+SyncedNotification::GetSyncedNotificationSpecifics() {
+ return &(sync_data_.GetSpecifics().synced_notification());
+}
+
+const std::string SyncedNotification::get_first_external_id() const {
+ if (!sync_data_.GetSpecifics().synced_notification().
+ has_coalesced_notification())
+ return "";
+ if (sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().notification_size() < 1)
+ return "";
+ if (!sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().notification(0).has_external_id())
+ return "";
+
+ return sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().notification(0).external_id();
+}
+
+const std::string SyncedNotification::title() const {
+
dcheng 2013/01/07 20:42:10 Remove extra newlines at the beginning of all bloc
Pete Williamson 2013/01/18 18:58:39 Done.
+ if (!sync_data_.GetSpecifics().synced_notification().
dcheng 2013/01/07 20:42:10 1) This seems overly complicated. I think a high l
Pete Williamson 2013/01/18 18:58:39 All functions renamed so they no longer have a nam
dcheng 2013/01/18 21:56:13 Sure but we can still change it at this point in t
Pete Williamson 2013/01/23 01:45:55 I used Nicolas's idea to eliminate a lot of the ex
+ has_coalesced_notification())
+ return "";
+ if (!sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().has_render_info())
+ return "";
+ if (!sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().render_info().has_layout())
+ return "";
+ if (!sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().render_info().layout().has_layout_type())
+ return "";
+
+ const RenderInfo_Layout_LayoutType layout_type =
+ sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().render_info().layout().layout_type();
+
+ // Depending on the layout type, get the proper title.
+ if (RenderInfo_Layout_LayoutType_TITLE_AND_SUBTEXT == layout_type) {
+
+ // If we have title and subtext, get that title.
+ if (!sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().render_info().layout().
+ has_title_and_subtext_data())
+ return "";
+ if (!sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().render_info().layout().
+ title_and_subtext_data().has_title())
+ return "";
+
+ // We have a title after all, return it.
+ return sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().render_info().layout().
+ title_and_subtext_data().title();
+
+ } else if (RenderInfo_Layout_LayoutType_TITLE_AND_IMAGE == layout_type) {
+
+ // If we have title and image, get that title.
+ if (!sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().render_info().layout().
+ has_title_and_image_data())
+ return "";
+ if (!sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().render_info().layout().
+ title_and_image_data().has_title())
+ return "";
+
+ // We have a title after all, return it.
+ return sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().render_info().layout().
+ title_and_image_data().title();
+ } else {
+ // This is an error case, we should never get here unless the protobuf
+ // is bad, or a new type is introduced and this code does not get updated.
+ DCHECK(false);
+ return "";
+ }
+}
+
+const std::string SyncedNotification::app_id() const {
dcheng 2013/01/07 20:42:10 Similar comment about incorrect naming (these are
Pete Williamson 2013/01/18 18:58:39 Done.
+
+ if (!sync_data_.GetSpecifics().synced_notification().
+ has_coalesced_notification())
+ return "";
+ if (!sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().has_id())
+ return "";
+ if (!sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().id().
+ has_app_id())
+ return "";
+ return sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().id().app_id();
+}
+
+const std::string SyncedNotification::coalescing_key() const {
+
+ if (!sync_data_.GetSpecifics().synced_notification().
+ has_coalesced_notification())
+ return "";
+ if (!sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().has_id())
+ return "";
+ if (!sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().id().
+ has_coalescing_key())
+ return "";
+ return sync_data_.GetSpecifics().synced_notification().
+ coalesced_notification().id().coalescing_key();
+}
+

Powered by Google App Engine
This is Rietveld 408576698