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

Unified Diff: chromeos/dbus/ibus/ibus_panel_service.h

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_unittest.cc ('k') | chromeos/dbus/ibus/ibus_panel_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/ibus/ibus_panel_service.h
diff --git a/chromeos/dbus/ibus/ibus_panel_service.h b/chromeos/dbus/ibus/ibus_panel_service.h
index 19ea3c56d0719de76e49b40573d0a0d568042b6e..a689ad66913f9763c8a763f1c16629146d094427 100644
--- a/chromeos/dbus/ibus/ibus_panel_service.h
+++ b/chromeos/dbus/ibus/ibus_panel_service.h
@@ -21,8 +21,6 @@ class ObjectPath;
namespace chromeos {
class IBusInputContextClient;
-// TODO(nona): Remove ibus namespace after complete libibus removal.
-namespace ibus {
class IBusLookupTable;
class IBusProperty;
class IBusText;
@@ -34,7 +32,7 @@ class CHROMEOS_EXPORT IBusPanelCandidateWindowHandlerInterface {
virtual ~IBusPanelCandidateWindowHandlerInterface() {}
// Called when the IME updates the lookup table.
- virtual void UpdateLookupTable(const ibus::IBusLookupTable& table,
+ virtual void UpdateLookupTable(const IBusLookupTable& table,
bool visible) = 0;
// Called when the IME hides the lookup table.
@@ -69,10 +67,10 @@ class CHROMEOS_EXPORT IBusPanelPropertyHandlerInterface {
virtual ~IBusPanelPropertyHandlerInterface() {}
// Called when a new property is registered.
- virtual void RegisterProperties(const ibus::IBusPropertyList& properties) = 0;
+ virtual void RegisterProperties(const IBusPropertyList& properties) = 0;
// Called when current property is updated.
- virtual void UpdateProperty(const ibus::IBusProperty& property) = 0;
+ virtual void UpdateProperty(const IBusProperty& property) = 0;
protected:
IBusPanelPropertyHandlerInterface() {}
@@ -132,7 +130,6 @@ class CHROMEOS_EXPORT IBusPanelService {
DISALLOW_COPY_AND_ASSIGN(IBusPanelService);
};
-} // namespace ibus
} // namespace chromeos
#endif // CHROMEOS_DBUS_IBUS_IBUS_PANEL_SERVICE_H_
« no previous file with comments | « chromeos/dbus/ibus/ibus_object_unittest.cc ('k') | chromeos/dbus/ibus/ibus_panel_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698