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

Unified Diff: chromeos/dbus/ibus/ibus_text.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_text.h ('k') | chromeos/dbus/ibus/ibus_text_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/ibus/ibus_text.cc
diff --git a/chromeos/dbus/ibus/ibus_text.cc b/chromeos/dbus/ibus/ibus_text.cc
index e905af85e8738b1fc34dfbe5d8b32aae1fd237e9..aa393771722b532408ad2b84d2292c919a0fe560 100644
--- a/chromeos/dbus/ibus/ibus_text.cc
+++ b/chromeos/dbus/ibus/ibus_text.cc
@@ -10,8 +10,6 @@
#include "dbus/message.h"
namespace chromeos {
-// TODO(nona): Remove ibus namespace after complete libibus removal.
-namespace ibus {
namespace {
const uint32 kAttributeUnderline = 1; // Indicates underline attribute.
@@ -214,7 +212,7 @@ bool PopIBusText(dbus::MessageReader* reader, IBusText* ibus_text) {
bool CHROMEOS_EXPORT PopStringFromIBusText(dbus::MessageReader* reader,
std::string* text) {
IBusText ibus_text;
- if(!PopIBusText(reader, &ibus_text))
+ if (!PopIBusText(reader, &ibus_text))
return false;
*text = ibus_text.text();
return true;
@@ -229,5 +227,4 @@ IBusText::IBusText()
IBusText::~IBusText() {
}
-} // namespace ibus
} // namespace chromeos
« no previous file with comments | « chromeos/dbus/ibus/ibus_text.h ('k') | chromeos/dbus/ibus/ibus_text_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698