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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 #include "public/web/WebConsoleMessage.h" | 196 #include "public/web/WebConsoleMessage.h" |
197 #include "public/web/WebDOMEvent.h" | 197 #include "public/web/WebDOMEvent.h" |
198 #include "public/web/WebDocument.h" | 198 #include "public/web/WebDocument.h" |
199 #include "public/web/WebFindOptions.h" | 199 #include "public/web/WebFindOptions.h" |
200 #include "public/web/WebFormElement.h" | 200 #include "public/web/WebFormElement.h" |
201 #include "public/web/WebFrameClient.h" | 201 #include "public/web/WebFrameClient.h" |
202 #include "public/web/WebFrameOwnerProperties.h" | 202 #include "public/web/WebFrameOwnerProperties.h" |
203 #include "public/web/WebHistoryItem.h" | 203 #include "public/web/WebHistoryItem.h" |
204 #include "public/web/WebIconURL.h" | 204 #include "public/web/WebIconURL.h" |
205 #include "public/web/WebInputElement.h" | 205 #include "public/web/WebInputElement.h" |
206 #include "public/web/WebInputMethodController.h" | |
207 #include "public/web/WebKit.h" | 206 #include "public/web/WebKit.h" |
208 #include "public/web/WebNode.h" | 207 #include "public/web/WebNode.h" |
209 #include "public/web/WebPerformance.h" | 208 #include "public/web/WebPerformance.h" |
210 #include "public/web/WebPlugin.h" | 209 #include "public/web/WebPlugin.h" |
211 #include "public/web/WebPrintParams.h" | 210 #include "public/web/WebPrintParams.h" |
212 #include "public/web/WebPrintPresetOptions.h" | 211 #include "public/web/WebPrintPresetOptions.h" |
213 #include "public/web/WebRange.h" | 212 #include "public/web/WebRange.h" |
214 #include "public/web/WebScriptSource.h" | 213 #include "public/web/WebScriptSource.h" |
215 #include "public/web/WebSerializedScriptValue.h" | 214 #include "public/web/WebSerializedScriptValue.h" |
216 #include "public/web/WebTreeScopeType.h" | 215 #include "public/web/WebTreeScopeType.h" |
(...skipping 2144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2361 ->frameScheduler() | 2360 ->frameScheduler() |
2362 ->unthrottledTaskRunner() | 2361 ->unthrottledTaskRunner() |
2363 ->toSingleThreadTaskRunner(); | 2362 ->toSingleThreadTaskRunner(); |
2364 } | 2363 } |
2365 | 2364 |
2366 WebInputMethodControllerImpl* WebLocalFrameImpl::inputMethodController() const { | 2365 WebInputMethodControllerImpl* WebLocalFrameImpl::inputMethodController() const { |
2367 return m_inputMethodController.get(); | 2366 return m_inputMethodController.get(); |
2368 } | 2367 } |
2369 | 2368 |
2370 } // namespace blink | 2369 } // namespace blink |
OLD | NEW |