diff options
Diffstat (limited to 'chrome/common/favicon_url.cc')
-rw-r--r-- | chrome/common/favicon_url.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/chrome/common/favicon_url.cc b/chrome/common/favicon_url.cc new file mode 100644 index 0000000..8b05d0e --- /dev/null +++ b/chrome/common/favicon_url.cc @@ -0,0 +1,17 @@ +// 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. + +#include "chrome/common/favicon_url.h" + +FaviconURL::FaviconURL() + : icon_type(INVALID_ICON) { +} + +FaviconURL::FaviconURL(const GURL& url, IconType type) + : icon_url(url), + icon_type(type) { +} + +FaviconURL::~FaviconURL() { +} |