| 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/chromeos/dbus/image_burner_client.h" | 5 #include "chrome/browser/chromeos/dbus/image_burner_client.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "chrome/browser/chromeos/system/runtime_environment.h" | 9 #include "chrome/browser/chromeos/system/runtime_environment.h" |
| 10 #include "dbus/bus.h" | 10 #include "dbus/bus.h" |
| 11 #include "dbus/message.h" | 11 #include "dbus/message.h" |
| 12 #include "dbus/object_path.h" |
| 12 #include "dbus/object_proxy.h" | 13 #include "dbus/object_proxy.h" |
| 13 #include "third_party/cros_system_api/dbus/service_constants.h" | 14 #include "third_party/cros_system_api/dbus/service_constants.h" |
| 14 | 15 |
| 15 namespace chromeos { | 16 namespace chromeos { |
| 16 | 17 |
| 17 namespace { | 18 namespace { |
| 18 | 19 |
| 19 // The ImageBurnerClient implementation. | 20 // The ImageBurnerClient implementation. |
| 20 class ImageBurnerClientImpl : public ImageBurnerClient { | 21 class ImageBurnerClientImpl : public ImageBurnerClient { |
| 21 public: | 22 public: |
| 22 explicit ImageBurnerClientImpl(dbus::Bus* bus) | 23 explicit ImageBurnerClientImpl(dbus::Bus* bus) |
| 23 : proxy_(NULL), | 24 : proxy_(NULL), |
| 24 weak_ptr_factory_(this) { | 25 weak_ptr_factory_(this) { |
| 25 proxy_ = bus->GetObjectProxy(imageburn::kImageBurnServiceName, | 26 proxy_ = bus->GetObjectProxy( |
| 26 imageburn::kImageBurnServicePath); | 27 imageburn::kImageBurnServiceName, |
| 28 dbus::ObjectPath(imageburn::kImageBurnServicePath)); |
| 27 proxy_->ConnectToSignal( | 29 proxy_->ConnectToSignal( |
| 28 imageburn::kImageBurnServiceInterface, | 30 imageburn::kImageBurnServiceInterface, |
| 29 imageburn::kSignalBurnFinishedName, | 31 imageburn::kSignalBurnFinishedName, |
| 30 base::Bind(&ImageBurnerClientImpl::OnBurnFinished, | 32 base::Bind(&ImageBurnerClientImpl::OnBurnFinished, |
| 31 weak_ptr_factory_.GetWeakPtr()), | 33 weak_ptr_factory_.GetWeakPtr()), |
| 32 base::Bind(&ImageBurnerClientImpl::OnSignalConnected, | 34 base::Bind(&ImageBurnerClientImpl::OnSignalConnected, |
| 33 weak_ptr_factory_.GetWeakPtr())); | 35 weak_ptr_factory_.GetWeakPtr())); |
| 34 proxy_->ConnectToSignal( | 36 proxy_->ConnectToSignal( |
| 35 imageburn::kImageBurnServiceInterface, | 37 imageburn::kImageBurnServiceInterface, |
| 36 imageburn::kSignalBurnUpdateName, | 38 imageburn::kSignalBurnUpdateName, |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 // static | 158 // static |
| 157 ImageBurnerClient* ImageBurnerClient::Create(dbus::Bus* bus) { | 159 ImageBurnerClient* ImageBurnerClient::Create(dbus::Bus* bus) { |
| 158 if (system::runtime_environment::IsRunningOnChromeOS()) { | 160 if (system::runtime_environment::IsRunningOnChromeOS()) { |
| 159 return new ImageBurnerClientImpl(bus); | 161 return new ImageBurnerClientImpl(bus); |
| 160 } else { | 162 } else { |
| 161 return new ImageBurnerClientStubImpl(); | 163 return new ImageBurnerClientStubImpl(); |
| 162 } | 164 } |
| 163 } | 165 } |
| 164 | 166 |
| 165 } // chromeos | 167 } // chromeos |
| OLD | NEW |