OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/chromeos/proxy_config_service_impl.h" | 5 #include "chrome/browser/chromeos/proxy_config_service_impl.h" |
6 | 6 |
7 #include <ostream> | 7 #include <ostream> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
(...skipping 471 matching lines...) Loading... |
482 // Should be called from IO thread. | 482 // Should be called from IO thread. |
483 CheckCurrentlyOnIOThread(); | 483 CheckCurrentlyOnIOThread(); |
484 if (has_config_) { | 484 if (has_config_) { |
485 // Simply return the last cached proxy configuration. | 485 // Simply return the last cached proxy configuration. |
486 cached_config_.ToNetProxyConfig(net_config); | 486 cached_config_.ToNetProxyConfig(net_config); |
487 return true; | 487 return true; |
488 } | 488 } |
489 return false; | 489 return false; |
490 } | 490 } |
491 | 491 |
492 void ProxyConfigServiceImpl::OnSettingsOpSucceeded(bool value) { | 492 void ProxyConfigServiceImpl::OnSettingsOpCompleted( |
493 VLOG(1) << "Stored proxy setting to device"; | 493 SignedSettings::ReturnCode code, |
| 494 bool value) { |
| 495 if (SignedSettings::SUCCESS == code) |
| 496 VLOG(1) << "Stored proxy setting to device"; |
| 497 else |
| 498 LOG(WARNING) << "Error storing proxy setting to device"; |
494 store_property_op_ = NULL; | 499 store_property_op_ = NULL; |
495 if (persist_to_device_pending_) | 500 if (persist_to_device_pending_) |
496 PersistConfigToDevice(); | 501 PersistConfigToDevice(); |
497 } | 502 } |
498 | 503 |
499 void ProxyConfigServiceImpl::OnSettingsOpSucceeded(std::string value) { | 504 void ProxyConfigServiceImpl::OnSettingsOpCompleted( |
500 VLOG(1) << "Retrieved proxy setting from device, value=[" << value << "]"; | 505 SignedSettings::ReturnCode code, |
501 if (reference_config_.Deserialize(value)) { | 506 std::string value) { |
502 OnUISetProxyConfig(false); | 507 if (SignedSettings::SUCCESS == code) { |
| 508 VLOG(1) << "Retrieved proxy setting from device, value=[" << value << "]"; |
| 509 if (reference_config_.Deserialize(value)) { |
| 510 OnUISetProxyConfig(false); |
| 511 } else { |
| 512 LOG(WARNING) << "Error deserializing device's proxy setting"; |
| 513 InitConfigToDefault(true); |
| 514 } |
503 } else { | 515 } else { |
504 LOG(WARNING) << "Error deserializing device's proxy setting"; | 516 LOG(WARNING) << "Error retrieving proxy setting from device"; |
505 InitConfigToDefault(true); | 517 InitConfigToDefault(true); |
506 } | 518 } |
507 retrieve_property_op_ = NULL; | 519 retrieve_property_op_ = NULL; |
508 } | 520 } |
509 | 521 |
510 void ProxyConfigServiceImpl::OnSettingsOpFailed( | |
511 SignedSettings::FailureCode code) { | |
512 if (retrieve_property_op_) { | |
513 LOG(WARNING) << "Error retrieving proxy setting from device"; | |
514 InitConfigToDefault(true); | |
515 retrieve_property_op_ = NULL; | |
516 } else { | |
517 LOG(WARNING) << "Error storing proxy setting to device"; | |
518 store_property_op_ = NULL; | |
519 if (persist_to_device_pending_) | |
520 PersistConfigToDevice(); | |
521 } | |
522 } | |
523 | |
524 //------------------ ProxyConfigServiceImpl: private methods ------------------- | 522 //------------------ ProxyConfigServiceImpl: private methods ------------------- |
525 | 523 |
526 void ProxyConfigServiceImpl::InitConfigToDefault(bool post_to_io_thread) { | 524 void ProxyConfigServiceImpl::InitConfigToDefault(bool post_to_io_thread) { |
527 VLOG(1) << "Using default proxy config: auto-detect"; | 525 VLOG(1) << "Using default proxy config: auto-detect"; |
528 reference_config_.mode = ProxyConfig::MODE_AUTO_DETECT; | 526 reference_config_.mode = ProxyConfig::MODE_AUTO_DETECT; |
529 reference_config_.automatic_proxy.source = ProxyConfig::SOURCE_OWNER; | 527 reference_config_.automatic_proxy.source = ProxyConfig::SOURCE_OWNER; |
530 if (post_to_io_thread && can_post_task_) { | 528 if (post_to_io_thread && can_post_task_) { |
531 OnUISetProxyConfig(false); | 529 OnUISetProxyConfig(false); |
532 } else { | 530 } else { |
533 // Update the IO-accessible copy in |cached_config_| as well. | 531 // Update the IO-accessible copy in |cached_config_| as well. |
(...skipping 51 matching lines...) Loading... |
585 has_config_ = true; | 583 has_config_ = true; |
586 cached_config_ = new_config; | 584 cached_config_ = new_config; |
587 // Notify observers of new proxy config. | 585 // Notify observers of new proxy config. |
588 net::ProxyConfig net_config; | 586 net::ProxyConfig net_config; |
589 cached_config_.ToNetProxyConfig(&net_config); | 587 cached_config_.ToNetProxyConfig(&net_config); |
590 FOR_EACH_OBSERVER(net::ProxyConfigService::Observer, observers_, | 588 FOR_EACH_OBSERVER(net::ProxyConfigService::Observer, observers_, |
591 OnProxyConfigChanged(net_config)); | 589 OnProxyConfigChanged(net_config)); |
592 } | 590 } |
593 | 591 |
594 } // namespace chromeos | 592 } // namespace chromeos |
OLD | NEW |