| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "android_webview/browser/aw_form_database_service.h" | 5 #include "android_webview/browser/aw_form_database_service.h" |
| 6 #include "base/logging.h" | 6 #include "base/logging.h" |
| 7 #include "components/autofill/browser/webdata/autofill_table.h" | 7 #include "components/autofill/browser/webdata/autofill_table.h" |
| 8 #include "components/webdata/common/webdata_constants.h" | 8 #include "components/webdata/common/webdata_constants.h" |
| 9 #include "content/public/browser/browser_thread.h" | 9 #include "content/public/browser/browser_thread.h" |
| 10 #include "ui/base/l10n/l10n_util_android.h" | 10 #include "ui/base/l10n/l10n_util_android.h" |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 } | 45 } |
| 46 | 46 |
| 47 void AwFormDatabaseService::Shutdown() { | 47 void AwFormDatabaseService::Shutdown() { |
| 48 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 48 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 49 autofill_data_->ShutdownOnUIThread(); | 49 autofill_data_->ShutdownOnUIThread(); |
| 50 web_database_->ShutdownDatabase(); | 50 web_database_->ShutdownDatabase(); |
| 51 } | 51 } |
| 52 | 52 |
| 53 void AwFormDatabaseService::CancelPendingQuery() { | 53 void AwFormDatabaseService::CancelPendingQuery() { |
| 54 if (pending_query_handle_) { | 54 if (pending_query_handle_) { |
| 55 if (autofill_data_) | 55 if (autofill_data_.get()) |
| 56 autofill_data_->CancelRequest(pending_query_handle_); | 56 autofill_data_->CancelRequest(pending_query_handle_); |
| 57 pending_query_handle_ = 0; | 57 pending_query_handle_ = 0; |
| 58 } | 58 } |
| 59 } | 59 } |
| 60 | 60 |
| 61 scoped_refptr<autofill::AutofillWebDataService> | 61 scoped_refptr<autofill::AutofillWebDataService> |
| 62 AwFormDatabaseService::get_autofill_webdata_service() { | 62 AwFormDatabaseService::get_autofill_webdata_service() { |
| 63 return autofill_data_; | 63 return autofill_data_; |
| 64 } | 64 } |
| 65 | 65 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 96 if (result) { | 96 if (result) { |
| 97 DCHECK_EQ(AUTOFILL_VALUE_RESULT, result->GetType()); | 97 DCHECK_EQ(AUTOFILL_VALUE_RESULT, result->GetType()); |
| 98 const WDResult<bool>* autofill_result = | 98 const WDResult<bool>* autofill_result = |
| 99 static_cast<const WDResult<bool>*>(result); | 99 static_cast<const WDResult<bool>*>(result); |
| 100 has_form_data_ = autofill_result->GetValue(); | 100 has_form_data_ = autofill_result->GetValue(); |
| 101 } | 101 } |
| 102 completion_.Signal(); | 102 completion_.Signal(); |
| 103 } | 103 } |
| 104 | 104 |
| 105 } // namespace android_webview | 105 } // namespace android_webview |
| OLD | NEW |