diff options
Diffstat (limited to 'chrome/browser/chromeos/contacts/contact.cc')
-rw-r--r-- | chrome/browser/chromeos/contacts/contact.cc | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/chrome/browser/chromeos/contacts/contact.cc b/chrome/browser/chromeos/contacts/contact.cc deleted file mode 100644 index bbb2b7a..0000000 --- a/chrome/browser/chromeos/contacts/contact.cc +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2012 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/browser/chromeos/contacts/contact.h" - -namespace contacts { - -Contact::AddressType::AddressType() : relation(RELATION_OTHER) {} - -Contact::EmailAddress::EmailAddress() : primary(false) {} - -Contact::PhoneNumber::PhoneNumber() : primary(false) {} - -Contact::PostalAddress::PostalAddress() : primary(false) {} - -Contact::InstantMessagingAddress::InstantMessagingAddress() - : protocol(PROTOCOL_OTHER), - primary(false) {} - -Contact::Contact() : deleted(false) {} - -Contact::~Contact() {} - -} // namespace contacts |