diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-08 19:41:49 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-08 19:41:49 +0000 |
commit | 0800c6694b82aebb27f8021acc759e04dfe2542f (patch) | |
tree | e97d3ffa471f6f9de84d118d9b1b7160276601a1 /chrome/browser/debugger/debugger_host_impl.h | |
parent | b6c874589ef2f9212314ef9d2a5f1cfc19046fe7 (diff) | |
download | chromium_src-0800c6694b82aebb27f8021acc759e04dfe2542f.zip chromium_src-0800c6694b82aebb27f8021acc759e04dfe2542f.tar.gz chromium_src-0800c6694b82aebb27f8021acc759e04dfe2542f.tar.bz2 |
Enable ctrl-shift-L for app/popup windows and fix a crash. Patch by Yusuke Sato (see http://codereview.chromium.org/115050 ), r=me.
BUG=8071,11559
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15671 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/debugger/debugger_host_impl.h')
-rw-r--r-- | chrome/browser/debugger/debugger_host_impl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/debugger/debugger_host_impl.h b/chrome/browser/debugger/debugger_host_impl.h index f8c97f3..66204e3 100644 --- a/chrome/browser/debugger/debugger_host_impl.h +++ b/chrome/browser/debugger/debugger_host_impl.h @@ -34,8 +34,9 @@ class DebuggerHostImpl : public DebuggerHost { // Handles messages from debugger UI. virtual void OnDebuggerHostMsg(const ListValue* args); - private: + virtual bool ShowWindow(); + private: TabContents* GetTabContentsBeingDebugged() const; scoped_refptr<DebuggerInputOutput> io_; |