Add MetricsService::WasLastShutdownClean()
[chromium-blink-merge.git] / chrome / common / importer / importer_url_row.cc
blob429bfc185c6eeb9189396aa1d5e3c2ddb4d117d9
1 // Copyright 2013 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 "chrome/common/importer/importer_url_row.h"
7 ImporterURLRow::ImporterURLRow()
8 : visit_count(0),
9 typed_count(0),
10 hidden(false) {
13 ImporterURLRow::ImporterURLRow(const GURL& url)
14 : url(url),
15 visit_count(0),
16 typed_count(0),
17 hidden(false) {