diff options
Diffstat (limited to 'base/pickle.h')
-rw-r--r-- | base/pickle.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/pickle.h b/base/pickle.h index 6006e62..bbe5d34 100644 --- a/base/pickle.h +++ b/base/pickle.h @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2008 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. @@ -32,8 +32,6 @@ // class Pickle { public: - virtual ~Pickle(); - // Initialize a Pickle object using the default header size. Pickle(); @@ -51,6 +49,8 @@ class Pickle { // Initializes a Pickle as a deep copy of another Pickle. Pickle(const Pickle& other); + virtual ~Pickle(); + // Performs a deep copy. Pickle& operator=(const Pickle& other); |