Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Unified Diff: chromeos/dbus/introspectable_client_unittest.cc

Issue 10440013: Move chromeos::GetInterfacesFromIntrospectResult into IntrospectableClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/dbus/introspectable_client.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/introspectable_client_unittest.cc
diff --git a/chrome/browser/chromeos/dbus/introspect_util_unittest.cc b/chromeos/dbus/introspectable_client_unittest.cc
similarity index 91%
rename from chrome/browser/chromeos/dbus/introspect_util_unittest.cc
rename to chromeos/dbus/introspectable_client_unittest.cc
index 5d68adafa46bb3606b35bd8c8075555be39497e3..5e98b1cdf7d96665b4c8bd6eba8881ee14c79554 100644
--- a/chrome/browser/chromeos/dbus/introspect_util_unittest.cc
+++ b/chromeos/dbus/introspectable_client_unittest.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/chromeos/dbus/introspect_util.h"
+#include "chromeos/dbus/introspectable_client.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -55,9 +55,9 @@ const char kXmlData[] =
namespace chromeos {
-TEST(IntrospectUtilTest, GetInterfacesFromIntrospectResult) {
+TEST(IntrospectableClientTest, GetInterfacesFromIntrospectResult) {
std::vector<std::string> interfaces =
- GetInterfacesFromIntrospectResult(kXmlData);
+ IntrospectableClient::GetInterfacesFromIntrospectResult(kXmlData);
ASSERT_EQ(3U, interfaces.size());
EXPECT_EQ("org.freedesktop.DBus.Introspectable", interfaces[0]);
« no previous file with comments | « chromeos/dbus/introspectable_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698