| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/webdata/autofill_web_data_service_impl.h" | 5 #include "chrome/browser/webdata/autofill_web_data_service_impl.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "chrome/browser/webdata/web_data_service.h" | 8 #include "chrome/browser/webdata/web_data_service.h" |
| 9 | 9 |
| 10 AutofillWebDataServiceImpl::AutofillWebDataServiceImpl( | 10 AutofillWebDataServiceImpl::AutofillWebDataServiceImpl( |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 } | 78 } |
| 79 | 79 |
| 80 void AutofillWebDataServiceImpl::CancelRequest(Handle h) { | 80 void AutofillWebDataServiceImpl::CancelRequest(Handle h) { |
| 81 service_->CancelRequest(h); | 81 service_->CancelRequest(h); |
| 82 } | 82 } |
| 83 | 83 |
| 84 content::NotificationSource | 84 content::NotificationSource |
| 85 AutofillWebDataServiceImpl::GetNotificationSource() { | 85 AutofillWebDataServiceImpl::GetNotificationSource() { |
| 86 return service_->GetNotificationSource(); | 86 return service_->GetNotificationSource(); |
| 87 } | 87 } |
| 88 |
| 89 bool AutofillWebDataServiceImpl::IsDatabaseLoaded() { |
| 90 return service_->IsDatabaseLoaded(); |
| 91 } |
| 92 |
| 93 WebDatabase* AutofillWebDataServiceImpl::GetDatabase() { |
| 94 return service_->GetDatabase(); |
| 95 } |
| OLD | NEW |