diff options
Diffstat (limited to 'chrome/common/notification_source.cc')
-rw-r--r-- | chrome/common/notification_source.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/chrome/common/notification_source.cc b/chrome/common/notification_source.cc new file mode 100644 index 0000000..e0f5ca0 --- /dev/null +++ b/chrome/common/notification_source.cc @@ -0,0 +1,17 @@ +// Copyright (c) 2010 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/common/notification_source.h" + +NotificationSource::NotificationSource(const NotificationSource& other) + : ptr_(other.ptr_) { +} + +NotificationSource::NotificationSource(const void* ptr) : ptr_(ptr) { +} + +NotificationSource::~NotificationSource() { +} + + |