diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-14 22:28:57 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-14 22:28:57 +0000 |
commit | 0c631f2617b70445dd7d116f0711cd991d2adffe (patch) | |
tree | ac8819b828ff7e62c7558d3da7148d8a47ad3bc6 /chrome/browser/dom_ui/dom_ui.h | |
parent | b2841b0739079820ae5a3f405fa777e5109a2e79 (diff) | |
download | chromium_src-0c631f2617b70445dd7d116f0711cd991d2adffe.zip chromium_src-0c631f2617b70445dd7d116f0711cd991d2adffe.tar.gz chromium_src-0c631f2617b70445dd7d116f0711cd991d2adffe.tar.bz2 |
[GTK] - constrained html dialog gtk implementation
BUG=58022
TEST=none
Review URL: http://codereview.chromium.org/3767005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62661 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/dom_ui/dom_ui.h')
-rw-r--r-- | chrome/browser/dom_ui/dom_ui.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/dom_ui/dom_ui.h b/chrome/browser/dom_ui/dom_ui.h index 42ffe2a..5e76b7c 100644 --- a/chrome/browser/dom_ui/dom_ui.h +++ b/chrome/browser/dom_ui/dom_ui.h @@ -141,13 +141,13 @@ class DOMUI { // The DOMMessageHandlers we own. std::vector<DOMMessageHandler*> handlers_; + // Non-owning pointer to the TabContents this DOMUI is associated with. + TabContents* tab_contents_; + private: // Execute a string of raw Javascript on the page. void ExecuteJavascript(const std::wstring& javascript); - // Non-owning pointer to the TabContents this DOMUI is associated with. - TabContents* tab_contents_; - // A map of message name -> message handling callback. typedef std::map<std::string, MessageCallback*> MessageCallbackMap; MessageCallbackMap message_callbacks_; |