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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 #include "platform/heap/Handle.h" | 174 #include "platform/heap/Handle.h" |
175 #include "platform/instrumentation/tracing/TraceEvent.h" | 175 #include "platform/instrumentation/tracing/TraceEvent.h" |
176 #include "platform/loader/fetch/ResourceFetcher.h" | 176 #include "platform/loader/fetch/ResourceFetcher.h" |
177 #include "platform/loader/fetch/ResourceRequest.h" | 177 #include "platform/loader/fetch/ResourceRequest.h" |
178 #include "platform/loader/fetch/SubstituteData.h" | 178 #include "platform/loader/fetch/SubstituteData.h" |
179 #include "platform/scroll/ScrollTypes.h" | 179 #include "platform/scroll/ScrollTypes.h" |
180 #include "platform/scroll/ScrollbarTheme.h" | 180 #include "platform/scroll/ScrollbarTheme.h" |
181 #include "platform/weborigin/KURL.h" | 181 #include "platform/weborigin/KURL.h" |
182 #include "platform/weborigin/SchemeRegistry.h" | 182 #include "platform/weborigin/SchemeRegistry.h" |
183 #include "platform/weborigin/SecurityPolicy.h" | 183 #include "platform/weborigin/SecurityPolicy.h" |
| 184 #include "platform/wtf/CurrentTime.h" |
| 185 #include "platform/wtf/HashMap.h" |
| 186 #include "platform/wtf/PtrUtil.h" |
184 #include "public/platform/WebDoubleSize.h" | 187 #include "public/platform/WebDoubleSize.h" |
185 #include "public/platform/WebFloatPoint.h" | 188 #include "public/platform/WebFloatPoint.h" |
186 #include "public/platform/WebFloatRect.h" | 189 #include "public/platform/WebFloatRect.h" |
187 #include "public/platform/WebLayer.h" | 190 #include "public/platform/WebLayer.h" |
188 #include "public/platform/WebPoint.h" | 191 #include "public/platform/WebPoint.h" |
189 #include "public/platform/WebRect.h" | 192 #include "public/platform/WebRect.h" |
190 #include "public/platform/WebSecurityOrigin.h" | 193 #include "public/platform/WebSecurityOrigin.h" |
191 #include "public/platform/WebSize.h" | 194 #include "public/platform/WebSize.h" |
192 #include "public/platform/WebURLError.h" | 195 #include "public/platform/WebURLError.h" |
193 #include "public/platform/WebVector.h" | 196 #include "public/platform/WebVector.h" |
(...skipping 27 matching lines...) Expand all Loading... |
221 #include "web/SuspendableScriptExecutor.h" | 224 #include "web/SuspendableScriptExecutor.h" |
222 #include "web/TextCheckerClientImpl.h" | 225 #include "web/TextCheckerClientImpl.h" |
223 #include "web/TextFinder.h" | 226 #include "web/TextFinder.h" |
224 #include "web/WebAssociatedURLLoaderImpl.h" | 227 #include "web/WebAssociatedURLLoaderImpl.h" |
225 #include "web/WebDataSourceImpl.h" | 228 #include "web/WebDataSourceImpl.h" |
226 #include "web/WebDevToolsAgentImpl.h" | 229 #include "web/WebDevToolsAgentImpl.h" |
227 #include "web/WebFrameWidgetImpl.h" | 230 #include "web/WebFrameWidgetImpl.h" |
228 #include "web/WebPluginContainerImpl.h" | 231 #include "web/WebPluginContainerImpl.h" |
229 #include "web/WebRemoteFrameImpl.h" | 232 #include "web/WebRemoteFrameImpl.h" |
230 #include "web/WebViewImpl.h" | 233 #include "web/WebViewImpl.h" |
231 #include "wtf/CurrentTime.h" | |
232 #include "wtf/HashMap.h" | |
233 #include "wtf/PtrUtil.h" | |
234 | 234 |
235 namespace blink { | 235 namespace blink { |
236 | 236 |
237 static int frameCount = 0; | 237 static int frameCount = 0; |
238 | 238 |
239 static HeapVector<ScriptSourceCode> createSourcesVector( | 239 static HeapVector<ScriptSourceCode> createSourcesVector( |
240 const WebScriptSource* sourcesIn, | 240 const WebScriptSource* sourcesIn, |
241 unsigned numSources) { | 241 unsigned numSources) { |
242 HeapVector<ScriptSourceCode> sources; | 242 HeapVector<ScriptSourceCode> sources; |
243 sources.append(sourcesIn, numSources); | 243 sources.append(sourcesIn, numSources); |
(...skipping 2281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2525 TextCheckerClient& WebLocalFrameImpl::textCheckerClient() const { | 2525 TextCheckerClient& WebLocalFrameImpl::textCheckerClient() const { |
2526 return *m_textCheckerClient; | 2526 return *m_textCheckerClient; |
2527 } | 2527 } |
2528 | 2528 |
2529 void WebLocalFrameImpl::setTextCheckClient( | 2529 void WebLocalFrameImpl::setTextCheckClient( |
2530 WebTextCheckClient* textCheckClient) { | 2530 WebTextCheckClient* textCheckClient) { |
2531 m_textCheckClient = textCheckClient; | 2531 m_textCheckClient = textCheckClient; |
2532 } | 2532 } |
2533 | 2533 |
2534 } // namespace blink | 2534 } // namespace blink |
OLD | NEW |