summaryrefslogtreecommitdiff
path: root/chromium/components/autofill/core/browser/webdata/autofill_change.cc
blob: f9a498e787584ae753afabe531484a296a9a75e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2013 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 "components/autofill/core/browser/webdata/autofill_change.h"

#include "base/logging.h"

namespace autofill {

AutofillChange::AutofillChange(Type type, const AutofillKey& key)
    : GenericAutofillChange<AutofillKey>(type, key) {
}

AutofillChange::~AutofillChange() {
}

}  // namespace autofill