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 2161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2378 feature = UseCounter::ChromeLoadTimesConnectionInfo; | 2377 feature = UseCounter::ChromeLoadTimesConnectionInfo; |
2379 } | 2378 } |
2380 UseCounter::count(frame(), feature); | 2379 UseCounter::count(frame(), feature); |
2381 } | 2380 } |
2382 | 2381 |
2383 WebInputMethodControllerImpl* WebLocalFrameImpl::inputMethodController() const { | 2382 WebInputMethodControllerImpl* WebLocalFrameImpl::inputMethodController() const { |
2384 return m_inputMethodController.get(); | 2383 return m_inputMethodController.get(); |
2385 } | 2384 } |
2386 | 2385 |
2387 } // namespace blink | 2386 } // namespace blink |
OLD | NEW |