| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_DEBUGGER_DEVTOOLS_HTTP_PROTOCOL_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_DEBUGGER_DEVTOOLS_HTTP_PROTOCOL_HANDLER_H_ |
| 6 #define CHROME_BROWSER_DEBUGGER_DEVTOOLS_HTTP_PROTOCOL_HANDLER_H_ | 6 #define CHROME_BROWSER_DEBUGGER_DEVTOOLS_HTTP_PROTOCOL_HANDLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 BuffersMap; | 107 BuffersMap; |
| 108 BuffersMap request_to_buffer_io_; | 108 BuffersMap request_to_buffer_io_; |
| 109 typedef std::map<int, DevToolsClientHost*> | 109 typedef std::map<int, DevToolsClientHost*> |
| 110 ConnectionToClientHostMap; | 110 ConnectionToClientHostMap; |
| 111 ConnectionToClientHostMap connection_to_client_host_ui_; | 111 ConnectionToClientHostMap connection_to_client_host_ui_; |
| 112 scoped_ptr<TabContentsProvider> tab_contents_provider_; | 112 scoped_ptr<TabContentsProvider> tab_contents_provider_; |
| 113 DISALLOW_COPY_AND_ASSIGN(DevToolsHttpProtocolHandler); | 113 DISALLOW_COPY_AND_ASSIGN(DevToolsHttpProtocolHandler); |
| 114 }; | 114 }; |
| 115 | 115 |
| 116 #endif // CHROME_BROWSER_DEBUGGER_DEVTOOLS_HTTP_PROTOCOL_HANDLER_H_ | 116 #endif // CHROME_BROWSER_DEBUGGER_DEVTOOLS_HTTP_PROTOCOL_HANDLER_H_ |
| OLD | NEW |