| 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/extensions/api/dial/dial_api.h" | 5 #include "chrome/browser/extensions/api/dial/dial_api.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
| 10 #include "chrome/browser/extensions/api/dial/dial_api_factory.h" | 10 #include "chrome/browser/extensions/api/dial/dial_api_factory.h" |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 void DialDiscoverNowFunction::Work() { | 160 void DialDiscoverNowFunction::Work() { |
| 161 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 161 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 162 result_ = dial_->dial_registry()->DiscoverNow(); | 162 result_ = dial_->dial_registry()->DiscoverNow(); |
| 163 } | 163 } |
| 164 | 164 |
| 165 bool DialDiscoverNowFunction::Respond() { | 165 bool DialDiscoverNowFunction::Respond() { |
| 166 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 166 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 167 if (!result_) | 167 if (!result_) |
| 168 error_ = kDialServiceError; | 168 error_ = kDialServiceError; |
| 169 | 169 |
| 170 SetResult(base::Value::CreateBooleanValue(result_)); | 170 SetResult(new base::FundamentalValue(result_)); |
| 171 return true; | 171 return true; |
| 172 } | 172 } |
| 173 | 173 |
| 174 } // namespace api | 174 } // namespace api |
| 175 | 175 |
| 176 } // namespace extensions | 176 } // namespace extensions |
| OLD | NEW |