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

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

Issue 11362111: Fix: infolist requries description title. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments on 11361210 Created 8 years, 1 month 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_lookup_table.cc ('k') | chromeos/dbus/ibus/ibus_text.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/ibus/ibus_text.h
diff --git a/chromeos/dbus/ibus/ibus_text.h b/chromeos/dbus/ibus/ibus_text.h
index 13b3bd12cffe1dbd07323ce50c8b9b08c34b7804..57af5877dde4cdf526e97c52ec5e2d834d01407a 100644
--- a/chromeos/dbus/ibus/ibus_text.h
+++ b/chromeos/dbus/ibus/ibus_text.h
@@ -149,9 +149,14 @@ class CHROMEOS_EXPORT IBusText {
annotation_ = annotation;
}
- const std::string& description() const { return description_; }
- void set_description(const std::string& description) {
- description_ = description;
+ const std::string& description_title() const { return description_title_; }
+ void set_description_title(const std::string& title) {
+ description_title_ = title;
+ }
+
+ const std::string& description_body() const { return description_body_; }
+ void set_description_body(const std::string& body) {
+ description_body_ = body;
}
const std::vector<UnderlineAttribute>& underline_attributes() const {
@@ -172,7 +177,8 @@ class CHROMEOS_EXPORT IBusText {
private:
std::string text_;
std::string annotation_;
- std::string description_;
+ std::string description_title_;
+ std::string description_body_;
std::vector<UnderlineAttribute> underline_attributes_;
std::vector<SelectionAttribute> selection_attributes_;
« no previous file with comments | « chromeos/dbus/ibus/ibus_lookup_table.cc ('k') | chromeos/dbus/ibus/ibus_text.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698