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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 // something else is still retaining a reference. | 83 // something else is still retaining a reference. |
84 // | 84 // |
85 // The client is expected to be set whenever the WebLocalFrameImpl is attached | 85 // The client is expected to be set whenever the WebLocalFrameImpl is attached |
86 // to the DOM. | 86 // to the DOM. |
87 | 87 |
88 #include "web/WebLocalFrameImpl.h" | 88 #include "web/WebLocalFrameImpl.h" |
89 | 89 |
90 #include "bindings/core/v8/BindingSecurity.h" | 90 #include "bindings/core/v8/BindingSecurity.h" |
91 #include "bindings/core/v8/DOMWrapperWorld.h" | 91 #include "bindings/core/v8/DOMWrapperWorld.h" |
92 #include "bindings/core/v8/ExceptionState.h" | 92 #include "bindings/core/v8/ExceptionState.h" |
93 #include "bindings/core/v8/ExceptionStatePlaceholder.h" | |
94 #include "bindings/core/v8/ScriptController.h" | 93 #include "bindings/core/v8/ScriptController.h" |
95 #include "bindings/core/v8/ScriptSourceCode.h" | 94 #include "bindings/core/v8/ScriptSourceCode.h" |
96 #include "bindings/core/v8/ScriptValue.h" | 95 #include "bindings/core/v8/ScriptValue.h" |
97 #include "bindings/core/v8/SourceLocation.h" | 96 #include "bindings/core/v8/SourceLocation.h" |
98 #include "bindings/core/v8/V8Binding.h" | 97 #include "bindings/core/v8/V8Binding.h" |
99 #include "bindings/core/v8/V8GCController.h" | 98 #include "bindings/core/v8/V8GCController.h" |
100 #include "bindings/core/v8/V8PerIsolateData.h" | 99 #include "bindings/core/v8/V8PerIsolateData.h" |
101 #include "core/HTMLNames.h" | 100 #include "core/HTMLNames.h" |
102 #include "core/dom/Document.h" | 101 #include "core/dom/Document.h" |
103 #include "core/dom/DocumentUserGestureToken.h" | 102 #include "core/dom/DocumentUserGestureToken.h" |
(...skipping 2256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2360 ->frameScheduler() | 2359 ->frameScheduler() |
2361 ->unthrottledTaskRunner() | 2360 ->unthrottledTaskRunner() |
2362 ->toSingleThreadTaskRunner(); | 2361 ->toSingleThreadTaskRunner(); |
2363 } | 2362 } |
2364 | 2363 |
2365 WebInputMethodControllerImpl* WebLocalFrameImpl::inputMethodController() const { | 2364 WebInputMethodControllerImpl* WebLocalFrameImpl::inputMethodController() const { |
2366 return m_inputMethodController.get(); | 2365 return m_inputMethodController.get(); |
2367 } | 2366 } |
2368 | 2367 |
2369 } // namespace blink | 2368 } // namespace blink |
OLD | NEW |