Print Preview: Refactoring print/cancel button and print summary.
[chromium-blink-merge.git] / content / common / notification_details.cc
blob6a399aef83fe7fde1792d82f8d2618b92046d424
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/common/notification_details.h"
7 NotificationDetails::NotificationDetails() : ptr_(NULL) {
10 NotificationDetails::NotificationDetails(const NotificationDetails& other)
11 : ptr_(other.ptr_) {
14 NotificationDetails::NotificationDetails(const void* ptr) : ptr_(ptr) {
17 NotificationDetails::~NotificationDetails() {