| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 namespace blink { | 46 namespace blink { |
| 47 | 47 |
| 48 class GraphicsLayer; | 48 class GraphicsLayer; |
| 49 class InspectedFrames; | 49 class InspectedFrames; |
| 50 class InspectorOverlay; | 50 class InspectorOverlay; |
| 51 class InspectorResourceContainer; | 51 class InspectorResourceContainer; |
| 52 class InspectorResourceContentLoader; | 52 class InspectorResourceContentLoader; |
| 53 class LocalFrame; | 53 class LocalFrame; |
| 54 class Page; | 54 class Page; |
| 55 class PlatformGestureEvent; | 55 class PlatformGestureEvent; |
| 56 class PlatformKeyboardEvent; | |
| 57 class PlatformMouseEvent; | 56 class PlatformMouseEvent; |
| 58 class PlatformTouchEvent; | 57 class PlatformTouchEvent; |
| 59 class WebDevToolsAgentClient; | 58 class WebDevToolsAgentClient; |
| 60 class WebFrameWidgetImpl; | 59 class WebFrameWidgetImpl; |
| 61 class WebInputEvent; | 60 class WebInputEvent; |
| 62 class WebLayerTreeView; | 61 class WebLayerTreeView; |
| 63 class WebLocalFrameImpl; | 62 class WebLocalFrameImpl; |
| 64 class WebString; | 63 class WebString; |
| 65 class WebViewImpl; | 64 class WebViewImpl; |
| 66 | 65 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 Member<InspectorTracingAgent> m_tracingAgent; | 151 Member<InspectorTracingAgent> m_tracingAgent; |
| 153 | 152 |
| 154 Member<InspectorSession> m_session; | 153 Member<InspectorSession> m_session; |
| 155 bool m_includeViewAgents; | 154 bool m_includeViewAgents; |
| 156 int m_layerTreeId; | 155 int m_layerTreeId; |
| 157 }; | 156 }; |
| 158 | 157 |
| 159 } // namespace blink | 158 } // namespace blink |
| 160 | 159 |
| 161 #endif | 160 #endif |
| OLD | NEW |