| Index: chrome/browser/chromeos/dbus/proxy_resolution_service_provider_unittest.cc
|
| diff --git a/chrome/browser/chromeos/dbus/proxy_resolution_service_provider_unittest.cc b/chrome/browser/chromeos/dbus/proxy_resolution_service_provider_unittest.cc
|
| index 9cbbdf57a9ef32c72cbaf841d3fc0b5ae39d336d..e7f3f9fb05672fdaf0a9a23986bd5c40e0ec4323 100644
|
| --- a/chrome/browser/chromeos/dbus/proxy_resolution_service_provider_unittest.cc
|
| +++ b/chrome/browser/chromeos/dbus/proxy_resolution_service_provider_unittest.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
| //
|
| @@ -22,6 +22,7 @@
|
| #include "dbus/mock_bus.h"
|
| #include "dbus/mock_exported_object.h"
|
| #include "dbus/mock_object_proxy.h"
|
| +#include "dbus/object_path.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "third_party/cros_system_api/dbus/service_constants.h"
|
| @@ -80,7 +81,7 @@ class ProxyResolutionServiceProviderTest : public testing::Test {
|
| mock_exported_object_ =
|
| new dbus::MockExportedObject(mock_bus_.get(),
|
| kLibCrosServiceName,
|
| - kLibCrosServicePath);
|
| + dbus::ObjectPath(kLibCrosServicePath));
|
|
|
| // |mock_exported_object_|'s ExportMethod() will use
|
| // |MockExportedObject().
|
| @@ -102,7 +103,7 @@ class ProxyResolutionServiceProviderTest : public testing::Test {
|
| mock_object_proxy_ =
|
| new dbus::MockObjectProxy(mock_bus_.get(),
|
| kLibCrosServiceName,
|
| - kLibCrosServicePath);
|
| + dbus::ObjectPath(kLibCrosServicePath));
|
| // |mock_object_proxy_|'s CallMethodAndBlock() will use
|
| // MockCallMethodAndBlock() to return responses.
|
| EXPECT_CALL(*mock_object_proxy_,
|
|
|