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

Side by Side Diff: chrome/browser/debugger/debugger_host_impl.cpp

Issue 115050: Enabled Ctrl+Shift+L for POPUP and APP windows.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 7 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/debugger/debugger_host_impl.h ('k') | chrome/browser/debugger/debugger_io.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/debugger/debugger_host_impl.h" 5 #include "chrome/browser/debugger/debugger_host_impl.h"
6 6
7 #include "base/json_reader.h" 7 #include "base/json_reader.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "base/values.h" 9 #include "base/values.h"
10 #include "chrome/browser/debugger/debugger_io.h" 10 #include "chrome/browser/debugger/debugger_io.h"
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 } 176 }
177 } 177 }
178 178
179 TabContents* DebuggerHostImpl::GetTabContentsBeingDebugged() const { 179 TabContents* DebuggerHostImpl::GetTabContentsBeingDebugged() const {
180 if (tab_reference_ != NULL) { 180 if (tab_reference_ != NULL) {
181 return tab_reference_->GetTabContents(); 181 return tab_reference_->GetTabContents();
182 } else { 182 } else {
183 return NULL; 183 return NULL;
184 } 184 }
185 } 185 }
186
187 bool DebuggerHostImpl::ShowWindow() {
188 return io_->ShowWindow();
189 }
190
OLDNEW
« no previous file with comments | « chrome/browser/debugger/debugger_host_impl.h ('k') | chrome/browser/debugger/debugger_io.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698