summaryrefslogtreecommitdiffstats
path: root/chrome/common/page_action.h
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-17 19:07:03 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-17 19:07:03 +0000
commitb55530cc5f175911fac5803367fcb1194a935da8 (patch)
tree08c006f6bff4b8474ccf952fec28dbbc0c15863a /chrome/common/page_action.h
parent89ef3a0ca7e75eabc15509dbd8734625420e673b (diff)
downloadchromium_src-b55530cc5f175911fac5803367fcb1194a935da8.zip
chromium_src-b55530cc5f175911fac5803367fcb1194a935da8.tar.gz
chromium_src-b55530cc5f175911fac5803367fcb1194a935da8.tar.bz2
Remove tooltip from page_action and just use the name as the tooltip. We don't seem to have a need for having the name and the tooltip be separate.
Review URL: http://codereview.chromium.org/125264 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18642 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/page_action.h')
-rw-r--r--chrome/common/page_action.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/chrome/common/page_action.h b/chrome/common/page_action.h
index c0b7325..d9ccfea 100644
--- a/chrome/common/page_action.h
+++ b/chrome/common/page_action.h
@@ -39,11 +39,6 @@ class PageAction {
icon_path_ = icon_path;
}
- std::string tooltip() const { return tooltip_; }
- void set_tooltip(const std::string& tooltip) {
- tooltip_ = tooltip;
- }
-
private:
// The id for the PageAction, for example: "RssPageAction".
std::string id_;
@@ -60,9 +55,6 @@ class PageAction {
// The icon that represents the PageIcon.
FilePath icon_path_;
-
- // The tooltip to show when the mouse hovers over the icon of the page action.
- std::string tooltip_;
};
typedef std::map<std::string, PageAction*> PageActionMap;