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

Unified Diff: chromeos/dbus/ibus/ibus_object_unittest.cc

Issue 11783053: Clean Up: Remove ibus namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 11 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/ibus/ibus_object.cc ('k') | chromeos/dbus/ibus/ibus_panel_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/ibus/ibus_object_unittest.cc
diff --git a/chromeos/dbus/ibus/ibus_object_unittest.cc b/chromeos/dbus/ibus/ibus_object_unittest.cc
index 0d1a2e255ea822c593bf0b6367b4a50362e7c0ac..ea89f5d11a88bbcb976a6c1f4ec60100ae2a09a5 100644
--- a/chromeos/dbus/ibus/ibus_object_unittest.cc
+++ b/chromeos/dbus/ibus/ibus_object_unittest.cc
@@ -14,8 +14,6 @@
#include "testing/gtest/include/gtest/gtest.h"
namespace chromeos {
-// TODO(nona): Remove ibus namespace after complete libibus removal.
-namespace ibus {
TEST(IBusObjectTest, WriteReadTest) {
scoped_ptr<dbus::Response> message(dbus::Response::CreateEmpty());
@@ -191,7 +189,7 @@ TEST(IBusObjectTest, PopAppendIBusPropertyTest) {
scoped_ptr<dbus::Response> response(dbus::Response::CreateEmpty());
// Create IBusProperty.
- ibus::IBusProperty property;
+ IBusProperty property;
property.set_key(kSampleKey);
property.set_type(kSampleType);
property.set_label(kSampleLabel);
@@ -209,7 +207,7 @@ TEST(IBusObjectTest, PopAppendIBusPropertyTest) {
// Read string from IBusText.
dbus::MessageReader reader(response.get());
IBusObjectReader ibus_object_reader(kSampleTypeName, &reader);
- ibus::IBusProperty result_property;
+ IBusProperty result_property;
ASSERT_TRUE(ibus_object_reader.Init());
ASSERT_TRUE(ibus_object_reader.PopIBusProperty(&result_property));
EXPECT_EQ(kSampleKey, result_property.key());
@@ -220,5 +218,4 @@ TEST(IBusObjectTest, PopAppendIBusPropertyTest) {
EXPECT_EQ(kSampleChecked, result_property.checked());
}
-} // namespace ibus
} // namespace chromeos
« no previous file with comments | « chromeos/dbus/ibus/ibus_object.cc ('k') | chromeos/dbus/ibus/ibus_panel_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698