| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/devtools_http_protocol_handler.h" | 5 #include "chrome/browser/debugger/devtools_http_protocol_handler.h" |
| 6 | 6 |
| 7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/message_loop_proxy.h" | 9 #include "base/message_loop_proxy.h" |
| 10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
| 11 #include "base/thread.h" | 11 #include "base/thread.h" |
| 12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
| 13 #include "chrome/browser/browser_list.h" | 13 #include "chrome/browser/browser_list.h" |
| 14 #include "chrome/browser/browser_thread.h" | 14 #include "chrome/browser/browser_thread.h" |
| 15 #include "chrome/browser/debugger/devtools_client_host.h" | 15 #include "chrome/browser/debugger/devtools_client_host.h" |
| 16 #include "chrome/browser/debugger/devtools_manager.h" | 16 #include "chrome/browser/debugger/devtools_manager.h" |
| 17 #include "chrome/browser/profile.h" | 17 #include "chrome/browser/profile.h" |
| 18 #include "chrome/browser/tab_contents_wrapper.h" | |
| 19 #include "chrome/browser/tab_contents/tab_contents.h" | 18 #include "chrome/browser/tab_contents/tab_contents.h" |
| 20 #include "chrome/browser/tabs/tab_strip_model.h" | 19 #include "chrome/browser/tabs/tab_strip_model.h" |
| 21 #include "chrome/browser/ui/browser.h" | 20 #include "chrome/browser/ui/browser.h" |
| 21 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
| 22 #include "chrome/common/devtools_messages.h" | 22 #include "chrome/common/devtools_messages.h" |
| 23 #include "chrome/common/net/url_request_context_getter.h" | 23 #include "chrome/common/net/url_request_context_getter.h" |
| 24 #include "googleurl/src/gurl.h" | 24 #include "googleurl/src/gurl.h" |
| 25 #include "net/base/io_buffer.h" | 25 #include "net/base/io_buffer.h" |
| 26 #include "net/base/listen_socket.h" | 26 #include "net/base/listen_socket.h" |
| 27 #include "net/server/http_server_request_info.h" | 27 #include "net/server/http_server_request_info.h" |
| 28 #include "net/url_request/url_request_context.h" | 28 #include "net/url_request/url_request_context.h" |
| 29 | 29 |
| 30 const int kBufferSize = 16 * 1024; | 30 const int kBufferSize = 16 * 1024; |
| 31 | 31 |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 TabStripModel* model = (*it)->tabstrip_model(); | 412 TabStripModel* model = (*it)->tabstrip_model(); |
| 413 for (int i = 0, size = model->count(); i < size; ++i) { | 413 for (int i = 0, size = model->count(); i < size; ++i) { |
| 414 NavigationController& controller = | 414 NavigationController& controller = |
| 415 model->GetTabContentsAt(i)->controller(); | 415 model->GetTabContentsAt(i)->controller(); |
| 416 if (controller.session_id().id() == session_id) | 416 if (controller.session_id().id() == session_id) |
| 417 return controller.tab_contents(); | 417 return controller.tab_contents(); |
| 418 } | 418 } |
| 419 } | 419 } |
| 420 return NULL; | 420 return NULL; |
| 421 } | 421 } |
| OLD | NEW |