| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 #include "platform/graphics/GraphicsContext.h" | 169 #include "platform/graphics/GraphicsContext.h" |
| 170 #include "platform/graphics/GraphicsLayerClient.h" | 170 #include "platform/graphics/GraphicsLayerClient.h" |
| 171 #include "platform/graphics/paint/ClipRecorder.h" | 171 #include "platform/graphics/paint/ClipRecorder.h" |
| 172 #include "platform/graphics/paint/DisplayItemCacheSkipper.h" | 172 #include "platform/graphics/paint/DisplayItemCacheSkipper.h" |
| 173 #include "platform/graphics/paint/DrawingRecorder.h" | 173 #include "platform/graphics/paint/DrawingRecorder.h" |
| 174 #include "platform/graphics/paint/PaintRecordBuilder.h" | 174 #include "platform/graphics/paint/PaintRecordBuilder.h" |
| 175 #include "platform/graphics/skia/SkiaUtils.h" | 175 #include "platform/graphics/skia/SkiaUtils.h" |
| 176 #include "platform/heap/Handle.h" | 176 #include "platform/heap/Handle.h" |
| 177 #include "platform/instrumentation/tracing/TraceEvent.h" | 177 #include "platform/instrumentation/tracing/TraceEvent.h" |
| 178 #include "platform/loader/fetch/ResourceFetcher.h" | 178 #include "platform/loader/fetch/ResourceFetcher.h" |
| 179 #include "platform/loader/fetch/ResourceRequest.h" |
| 179 #include "platform/loader/fetch/SubstituteData.h" | 180 #include "platform/loader/fetch/SubstituteData.h" |
| 180 #include "platform/network/ResourceRequest.h" | |
| 181 #include "platform/scroll/ScrollTypes.h" | 181 #include "platform/scroll/ScrollTypes.h" |
| 182 #include "platform/scroll/ScrollbarTheme.h" | 182 #include "platform/scroll/ScrollbarTheme.h" |
| 183 #include "platform/weborigin/KURL.h" | 183 #include "platform/weborigin/KURL.h" |
| 184 #include "platform/weborigin/SchemeRegistry.h" | 184 #include "platform/weborigin/SchemeRegistry.h" |
| 185 #include "platform/weborigin/SecurityPolicy.h" | 185 #include "platform/weborigin/SecurityPolicy.h" |
| 186 #include "public/platform/InterfaceProvider.h" | 186 #include "public/platform/InterfaceProvider.h" |
| 187 #include "public/platform/InterfaceRegistry.h" | 187 #include "public/platform/InterfaceRegistry.h" |
| 188 #include "public/platform/WebDoubleSize.h" | 188 #include "public/platform/WebDoubleSize.h" |
| 189 #include "public/platform/WebFloatPoint.h" | 189 #include "public/platform/WebFloatPoint.h" |
| 190 #include "public/platform/WebFloatRect.h" | 190 #include "public/platform/WebFloatRect.h" |
| (...skipping 2272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2463 createMarkup(startPosition, endPosition, AnnotateForInterchange, | 2463 createMarkup(startPosition, endPosition, AnnotateForInterchange, |
| 2464 ConvertBlocksToInlines::NotConvert, ResolveNonLocalURLs); | 2464 ConvertBlocksToInlines::NotConvert, ResolveNonLocalURLs); |
| 2465 } else { | 2465 } else { |
| 2466 clipHtml = | 2466 clipHtml = |
| 2467 createMarkup(endPosition, startPosition, AnnotateForInterchange, | 2467 createMarkup(endPosition, startPosition, AnnotateForInterchange, |
| 2468 ConvertBlocksToInlines::NotConvert, ResolveNonLocalURLs); | 2468 ConvertBlocksToInlines::NotConvert, ResolveNonLocalURLs); |
| 2469 } | 2469 } |
| 2470 } | 2470 } |
| 2471 | 2471 |
| 2472 } // namespace blink | 2472 } // namespace blink |
| OLD | NEW |