diff options
Diffstat (limited to 'chrome/browser/autofill/personal_data_manager.cc')
-rw-r--r-- | chrome/browser/autofill/personal_data_manager.cc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/chrome/browser/autofill/personal_data_manager.cc b/chrome/browser/autofill/personal_data_manager.cc new file mode 100644 index 0000000..8333c699 --- /dev/null +++ b/chrome/browser/autofill/personal_data_manager.cc @@ -0,0 +1,20 @@ +// Copyright (c) 2009 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/autofill/personal_data_manager.h" + +#include "chrome/browser/autofill/autofill_manager.h" +#include "chrome/browser/autofill/form_structure.h" + +PersonalDataManager::~PersonalDataManager() { +} + +bool PersonalDataManager::ImportFormData( + const std::vector<FormStructure*>& form_structures, + AutoFillManager* autofill_manager) { + return true; +} + +PersonalDataManager::PersonalDataManager() { +} |