OLD | NEW |
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 Loading... |
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 |
OLD | NEW |