| 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_PUBLIC_BROWSER_DEVTOOLS_FRONTEND_HOST_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_DEVTOOLS_FRONTEND_HOST_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_DEVTOOLS_FRONTEND_HOST_H_ | 6 #define CONTENT_PUBLIC_BROWSER_DEVTOOLS_FRONTEND_HOST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 virtual void HandleMessageFromDevToolsFrontendToBackend( | 34 virtual void HandleMessageFromDevToolsFrontendToBackend( |
| 35 const std::string& message) = 0; | 35 const std::string& message) = 0; |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 // Creates a new DevToolsFrontendHost for RenderViewHost where DevTools | 38 // Creates a new DevToolsFrontendHost for RenderViewHost where DevTools |
| 39 // frontend is loaded. | 39 // frontend is loaded. |
| 40 CONTENT_EXPORT static DevToolsFrontendHost* Create( | 40 CONTENT_EXPORT static DevToolsFrontendHost* Create( |
| 41 RenderViewHost* frontend_rvh, Delegate* delegate); | 41 RenderViewHost* frontend_rvh, Delegate* delegate); |
| 42 | 42 |
| 43 CONTENT_EXPORT virtual ~DevToolsFrontendHost() {} | 43 CONTENT_EXPORT virtual ~DevToolsFrontendHost() {} |
| 44 | |
| 45 // Dispatches message from embedder/backend to frontend. | |
| 46 // TODO(dgozman): remove and make embedder to take care of this. | |
| 47 CONTENT_EXPORT virtual void DispatchOnDevToolsFrontend( | |
| 48 const std::string& message) = 0; | |
| 49 }; | 44 }; |
| 50 | 45 |
| 51 } // namespace content | 46 } // namespace content |
| 52 | 47 |
| 53 #endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_FRONTEND_HOST_H_ | 48 #endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_FRONTEND_HOST_H_ |
| OLD | NEW |