OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_BROWSER_DEBUGGER_DEVTOOLS_HTTP_HANDLER_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_DEBUGGER_DEVTOOLS_HTTP_HANDLER_IMPL_H_ |
6 #define CONTENT_BROWSER_DEBUGGER_DEVTOOLS_HTTP_HANDLER_IMPL_H_ | 6 #define CONTENT_BROWSER_DEBUGGER_DEVTOOLS_HTTP_HANDLER_IMPL_H_ |
7 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 #include <set> | 9 #include <set> |
11 #include <string> | 10 #include <string> |
12 #include <vector> | 11 #include <vector> |
13 | 12 |
14 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
15 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
16 #include "content/common/content_export.h" | 15 #include "content/common/content_export.h" |
17 #include "content/public/browser/devtools_http_handler.h" | 16 #include "content/public/browser/devtools_http_handler.h" |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 net::URLRequestContextGetter* request_context_getter_; | 111 net::URLRequestContextGetter* request_context_getter_; |
113 scoped_ptr<DevToolsHttpHandlerDelegate> delegate_; | 112 scoped_ptr<DevToolsHttpHandlerDelegate> delegate_; |
114 RenderViewHostBinding* binding_; | 113 RenderViewHostBinding* binding_; |
115 scoped_ptr<RenderViewHostBinding> default_binding_; | 114 scoped_ptr<RenderViewHostBinding> default_binding_; |
116 DISALLOW_COPY_AND_ASSIGN(DevToolsHttpHandlerImpl); | 115 DISALLOW_COPY_AND_ASSIGN(DevToolsHttpHandlerImpl); |
117 }; | 116 }; |
118 | 117 |
119 } // namespace content | 118 } // namespace content |
120 | 119 |
121 #endif // CONTENT_BROWSER_DEBUGGER_DEVTOOLS_HTTP_HANDLER_IMPL_H_ | 120 #endif // CONTENT_BROWSER_DEBUGGER_DEVTOOLS_HTTP_HANDLER_IMPL_H_ |
OLD | NEW |