summaryrefslogtreecommitdiffstats
path: root/jingle
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-27 18:51:01 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-27 18:51:01 +0000
commitd2f05d07a90cf5c5bad814b603175acaefa254b5 (patch)
tree8e5e8d7724b8b505d418ea01277bc3f305d16182 /jingle
parentc3dd6dad0308d941cad3d9e72787177875d065b6 (diff)
downloadchromium_src-d2f05d07a90cf5c5bad814b603175acaefa254b5.zip
chromium_src-d2f05d07a90cf5c5bad814b603175acaefa254b5.tar.gz
chromium_src-d2f05d07a90cf5c5bad814b603175acaefa254b5.tar.bz2
Part 1 of repairing regressions to my old clang check plugins so Nico can
deploy the clang plugins to the waterfall/trybots. BUG=none TEST=compiles Review URL: http://codereview.chromium.org/6366019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72846 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle')
-rw-r--r--jingle/jingle.gyp1
-rw-r--r--jingle/notifier/listener/notification_defines.cc14
-rw-r--r--jingle/notifier/listener/notification_defines.h9
3 files changed, 19 insertions, 5 deletions
diff --git a/jingle/jingle.gyp b/jingle/jingle.gyp
index 61d9320..553e70e 100644
--- a/jingle/jingle.gyp
+++ b/jingle/jingle.gyp
@@ -53,6 +53,7 @@
'notifier/listener/mediator_thread_mock.h',
'notifier/listener/notification_constants.cc',
'notifier/listener/notification_constants.h',
+ 'notifier/listener/notification_defines.cc',
'notifier/listener/notification_defines.h',
'notifier/listener/push_notifications_listen_task.cc',
'notifier/listener/push_notifications_listen_task.h',
diff --git a/jingle/notifier/listener/notification_defines.cc b/jingle/notifier/listener/notification_defines.cc
new file mode 100644
index 0000000..c5e7ac3
--- /dev/null
+++ b/jingle/notifier/listener/notification_defines.cc
@@ -0,0 +1,14 @@
+// Copyright (c) 2011 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 "jingle/notifier/listener/notification_defines.h"
+
+OutgoingNotificationData::OutgoingNotificationData()
+ : send_content(false),
+ priority(0),
+ require_subscription(false),
+ write_to_cache_only(false) {
+}
+
+OutgoingNotificationData::~OutgoingNotificationData() {}
diff --git a/jingle/notifier/listener/notification_defines.h b/jingle/notifier/listener/notification_defines.h
index 8a42307..0e644d2 100644
--- a/jingle/notifier/listener/notification_defines.h
+++ b/jingle/notifier/listener/notification_defines.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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.
@@ -13,10 +13,9 @@ struct IncomingNotificationData {
};
struct OutgoingNotificationData {
- OutgoingNotificationData() : send_content(false), priority(0),
- require_subscription(false),
- write_to_cache_only(false) {
- }
+ OutgoingNotificationData();
+ ~OutgoingNotificationData();
+
// Id values
std::string service_url;
std::string service_id;