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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 #include "core/editing/Editor.h" | 114 #include "core/editing/Editor.h" |
115 #include "core/editing/FindInPageCoordinates.h" | 115 #include "core/editing/FindInPageCoordinates.h" |
116 #include "core/editing/FrameSelection.h" | 116 #include "core/editing/FrameSelection.h" |
117 #include "core/editing/InputMethodController.h" | 117 #include "core/editing/InputMethodController.h" |
118 #include "core/editing/PlainTextRange.h" | 118 #include "core/editing/PlainTextRange.h" |
119 #include "core/editing/TextAffinity.h" | 119 #include "core/editing/TextAffinity.h" |
120 #include "core/editing/iterators/TextIterator.h" | 120 #include "core/editing/iterators/TextIterator.h" |
121 #include "core/editing/markers/DocumentMarkerController.h" | 121 #include "core/editing/markers/DocumentMarkerController.h" |
122 #include "core/editing/serializers/Serialization.h" | 122 #include "core/editing/serializers/Serialization.h" |
123 #include "core/editing/spellcheck/SpellChecker.h" | 123 #include "core/editing/spellcheck/SpellChecker.h" |
| 124 #include "core/exported/SharedWorkerRepositoryClientImpl.h" |
124 #include "core/exported/WebAssociatedURLLoaderImpl.h" | 125 #include "core/exported/WebAssociatedURLLoaderImpl.h" |
125 #include "core/exported/WebDataSourceImpl.h" | 126 #include "core/exported/WebDataSourceImpl.h" |
126 #include "core/exported/WebViewBase.h" | 127 #include "core/exported/WebViewBase.h" |
127 #include "core/frame/FrameView.h" | 128 #include "core/frame/FrameView.h" |
128 #include "core/frame/LocalDOMWindow.h" | 129 #include "core/frame/LocalDOMWindow.h" |
129 #include "core/frame/PageScaleConstraintsSet.h" | 130 #include "core/frame/PageScaleConstraintsSet.h" |
130 #include "core/frame/RemoteFrame.h" | 131 #include "core/frame/RemoteFrame.h" |
131 #include "core/frame/ScreenOrientationController.h" | 132 #include "core/frame/ScreenOrientationController.h" |
132 #include "core/frame/Settings.h" | 133 #include "core/frame/Settings.h" |
133 #include "core/frame/SmartClip.h" | 134 #include "core/frame/SmartClip.h" |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 #include "public/web/WebPerformance.h" | 218 #include "public/web/WebPerformance.h" |
218 #include "public/web/WebPlugin.h" | 219 #include "public/web/WebPlugin.h" |
219 #include "public/web/WebPrintParams.h" | 220 #include "public/web/WebPrintParams.h" |
220 #include "public/web/WebPrintPresetOptions.h" | 221 #include "public/web/WebPrintPresetOptions.h" |
221 #include "public/web/WebRange.h" | 222 #include "public/web/WebRange.h" |
222 #include "public/web/WebScriptSource.h" | 223 #include "public/web/WebScriptSource.h" |
223 #include "public/web/WebSerializedScriptValue.h" | 224 #include "public/web/WebSerializedScriptValue.h" |
224 #include "public/web/WebTreeScopeType.h" | 225 #include "public/web/WebTreeScopeType.h" |
225 #include "skia/ext/platform_canvas.h" | 226 #include "skia/ext/platform_canvas.h" |
226 #include "web/RemoteFrameOwner.h" | 227 #include "web/RemoteFrameOwner.h" |
227 #include "web/SharedWorkerRepositoryClientImpl.h" | |
228 #include "web/TextCheckerClientImpl.h" | 228 #include "web/TextCheckerClientImpl.h" |
229 #include "web/TextFinder.h" | 229 #include "web/TextFinder.h" |
230 #include "web/WebDevToolsAgentImpl.h" | 230 #include "web/WebDevToolsAgentImpl.h" |
231 #include "web/WebFrameWidgetImpl.h" | 231 #include "web/WebFrameWidgetImpl.h" |
232 #include "web/WebPluginContainerImpl.h" | 232 #include "web/WebPluginContainerImpl.h" |
233 #include "web/WebRemoteFrameImpl.h" | 233 #include "web/WebRemoteFrameImpl.h" |
234 | 234 |
235 namespace blink { | 235 namespace blink { |
236 | 236 |
237 static int g_frame_count = 0; | 237 static int g_frame_count = 0; |
(...skipping 2335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2573 TextCheckerClient& WebLocalFrameImpl::GetTextCheckerClient() const { | 2573 TextCheckerClient& WebLocalFrameImpl::GetTextCheckerClient() const { |
2574 return *text_checker_client_; | 2574 return *text_checker_client_; |
2575 } | 2575 } |
2576 | 2576 |
2577 void WebLocalFrameImpl::SetTextCheckClient( | 2577 void WebLocalFrameImpl::SetTextCheckClient( |
2578 WebTextCheckClient* text_check_client) { | 2578 WebTextCheckClient* text_check_client) { |
2579 text_check_client_ = text_check_client; | 2579 text_check_client_ = text_check_client; |
2580 } | 2580 } |
2581 | 2581 |
2582 } // namespace blink | 2582 } // namespace blink |
OLD | NEW |