OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 bool isCompositorFramePending(Document*, ExceptionState&); | 307 bool isCompositorFramePending(Document*, ExceptionState&); |
308 | 308 |
309 void setZoomFactor(float); | 309 void setZoomFactor(float); |
310 | 310 |
311 void setShouldRevealPassword(Element*, bool, ExceptionState&); | 311 void setShouldRevealPassword(Element*, bool, ExceptionState&); |
312 | 312 |
313 ScriptPromise addOneToPromise(ExecutionContext*, ScriptPromise); | 313 ScriptPromise addOneToPromise(ExecutionContext*, ScriptPromise); |
314 | 314 |
315 void trace(Visitor*); | 315 void trace(Visitor*); |
316 | 316 |
317 void startSpeechInput(Element*); | |
318 void setValueForUser(Element*, const String&); | |
319 | |
320 private: | 317 private: |
321 explicit Internals(Document*); | 318 explicit Internals(Document*); |
322 Document* contextDocument() const; | 319 Document* contextDocument() const; |
323 LocalFrame* frame() const; | 320 LocalFrame* frame() const; |
324 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 321 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
325 PassRefPtr<ClientRectList> annotatedRegions(Document*, bool draggable, Excep
tionState&); | 322 PassRefPtr<ClientRectList> annotatedRegions(Document*, bool draggable, Excep
tionState&); |
326 | 323 |
327 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 324 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
328 RefPtr<DOMWindow> m_frontendWindow; | 325 RefPtr<DOMWindow> m_frontendWindow; |
329 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 326 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
330 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; | 327 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; |
331 RefPtrWillBeMember<InternalProfilers> m_profilers; | 328 RefPtrWillBeMember<InternalProfilers> m_profilers; |
332 }; | 329 }; |
333 | 330 |
334 } // namespace WebCore | 331 } // namespace WebCore |
335 | 332 |
336 #endif | 333 #endif |
OLD | NEW |