blob: e0f5ca0233a2ff6c1e6bcbbf94e7e6f71967d28a [file] [log] [blame]
// 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() {
}