summaryrefslogtreecommitdiffstats
path: root/chrome/browser/dom_ui/tips_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/dom_ui/tips_handler.h')
-rw-r--r--chrome/browser/dom_ui/tips_handler.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/dom_ui/tips_handler.h b/chrome/browser/dom_ui/tips_handler.h
index b6d5ccc..e5afe38 100644
--- a/chrome/browser/dom_ui/tips_handler.h
+++ b/chrome/browser/dom_ui/tips_handler.h
@@ -31,8 +31,8 @@ class TipsHandler : public DOMMessageHandler {
TipsHandler() : tips_cache_(NULL) {}
virtual ~TipsHandler() {}
- // DOMMessageHandler implementation and overrides.
- virtual DOMMessageHandler* Attach(DOMUI* dom_ui);
+ // DOMMessageHandler implementation and overrides.
+ virtual DOMMessageHandler* Attach(DOMUI* dom_ui);
virtual void RegisterMessages();
// Callback which pulls tips data from the preferences.
@@ -45,6 +45,9 @@ class TipsHandler : public DOMMessageHandler {
// Make sure the string we are pushing to the NTP is a valid URL.
bool IsValidURL(const std::wstring& url_string);
+ // So we can push data out to the page that has called this handler.
+ DOMUI* dom_ui_;
+
// Filled with data from cache in preferences.
const DictionaryValue* tips_cache_;