| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010-2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2010-2011 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 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 #include "ExceptionCode.h" | 34 #include "ExceptionCode.h" |
| 35 #include "Frame.h" | 35 #include "Frame.h" |
| 36 #include "FrameView.h" | 36 #include "FrameView.h" |
| 37 #include "InjectedScriptHost.h" | 37 #include "InjectedScriptHost.h" |
| 38 #include "InspectorBackendDispatcher.h" | 38 #include "InspectorBackendDispatcher.h" |
| 39 #include "InspectorController.h" | 39 #include "InspectorController.h" |
| 40 #include "InspectorFrontend.h" | 40 #include "InspectorFrontend.h" |
| 41 #include "InspectorProtocolVersion.h" | 41 #include "InspectorProtocolVersion.h" |
| 42 #include "InspectorValues.h" | 42 #include "InspectorValues.h" |
| 43 #include "MemoryCache.h" | |
| 44 #include "Page.h" | 43 #include "Page.h" |
| 45 #include "PageGroup.h" | 44 #include "PageGroup.h" |
| 46 #include "PageScriptDebugServer.h" | 45 #include "PageScriptDebugServer.h" |
| 47 #include "ScriptController.h" | 46 #include "ScriptController.h" |
| 48 #include "V8Binding.h" | 47 #include "V8Binding.h" |
| 49 #include "V8Utilities.h" | 48 #include "V8Utilities.h" |
| 50 #include "WebDataSource.h" | 49 #include "WebDataSource.h" |
| 51 #include "WebDevToolsAgentClient.h" | 50 #include "WebDevToolsAgentClient.h" |
| 52 #include "WebFrameImpl.h" | 51 #include "WebFrameImpl.h" |
| 53 #include "WebMemoryUsageInfo.h" | 52 #include "WebMemoryUsageInfo.h" |
| 54 #include "WebViewClient.h" | 53 #include "WebViewClient.h" |
| 55 #include "WebViewImpl.h" | 54 #include "WebViewImpl.h" |
| 55 #include "core/loader/cache/MemoryCache.h" |
| 56 #include "core/platform/graphics/GraphicsContext.h" | 56 #include "core/platform/graphics/GraphicsContext.h" |
| 57 #include "core/platform/network/ResourceError.h" | 57 #include "core/platform/network/ResourceError.h" |
| 58 #include "core/platform/network/ResourceRequest.h" | 58 #include "core/platform/network/ResourceRequest.h" |
| 59 #include "core/platform/network/ResourceResponse.h" | 59 #include "core/platform/network/ResourceResponse.h" |
| 60 #include "core/rendering/RenderView.h" | 60 #include "core/rendering/RenderView.h" |
| 61 #include "painting/GraphicsContextBuilder.h" | 61 #include "painting/GraphicsContextBuilder.h" |
| 62 #include <public/Platform.h> | 62 #include <public/Platform.h> |
| 63 #include <public/WebRect.h> | 63 #include <public/WebRect.h> |
| 64 #include <public/WebString.h> | 64 #include <public/WebString.h> |
| 65 #include <public/WebURL.h> | 65 #include <public/WebURL.h> |
| (...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 resultObject->setString("data", hintData); | 837 resultObject->setString("data", hintData); |
| 838 break; | 838 break; |
| 839 case BrowserDataHintNone: | 839 case BrowserDataHintNone: |
| 840 default: | 840 default: |
| 841 ASSERT_NOT_REACHED(); | 841 ASSERT_NOT_REACHED(); |
| 842 } | 842 } |
| 843 return messageObject->toJSONString(); | 843 return messageObject->toJSONString(); |
| 844 } | 844 } |
| 845 | 845 |
| 846 } // namespace WebKit | 846 } // namespace WebKit |
| OLD | NEW |