| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 class Document; | 45 class Document; |
| 46 class Frame; | 46 class Frame; |
| 47 class FrameView; | 47 class FrameView; |
| 48 class GraphicsContext; | 48 class GraphicsContext; |
| 49 class InspectorClient; | 49 class InspectorClient; |
| 50 class InspectorController; | 50 class InspectorController; |
| 51 class Node; | 51 class Node; |
| 52 class PlatformKeyboardEvent; | 52 class PlatformKeyboardEvent; |
| 53 } | 53 } |
| 54 | 54 |
| 55 namespace WebKit { | 55 namespace blink { |
| 56 | 56 |
| 57 class WebDevToolsAgentClient; | 57 class WebDevToolsAgentClient; |
| 58 class WebFrame; | 58 class WebFrame; |
| 59 class WebFrameImpl; | 59 class WebFrameImpl; |
| 60 class WebString; | 60 class WebString; |
| 61 class WebURLRequest; | 61 class WebURLRequest; |
| 62 class WebURLResponse; | 62 class WebURLResponse; |
| 63 class WebViewImpl; | 63 class WebViewImpl; |
| 64 struct WebMemoryUsageInfo; | 64 struct WebMemoryUsageInfo; |
| 65 struct WebURLError; | 65 struct WebURLError; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 WebDevToolsAgentClient* m_client; | 134 WebDevToolsAgentClient* m_client; |
| 135 WebViewImpl* m_webViewImpl; | 135 WebViewImpl* m_webViewImpl; |
| 136 bool m_attached; | 136 bool m_attached; |
| 137 bool m_generatingEvent; | 137 bool m_generatingEvent; |
| 138 bool m_deviceMetricsEnabled; | 138 bool m_deviceMetricsEnabled; |
| 139 bool m_emulateViewportEnabled; | 139 bool m_emulateViewportEnabled; |
| 140 bool m_originalViewportEnabled; | 140 bool m_originalViewportEnabled; |
| 141 bool m_isOverlayScrollbarsEnabled; | 141 bool m_isOverlayScrollbarsEnabled; |
| 142 }; | 142 }; |
| 143 | 143 |
| 144 } // namespace WebKit | 144 } // namespace blink |
| 145 | 145 |
| 146 #endif | 146 #endif |
| OLD | NEW |