blob: e0f5ca0233a2ff6c1e6bcbbf94e7e6f71967d28a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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() {
}
|