| 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 Vector<AtomicString> userPreferredLanguages() const; | 258 Vector<AtomicString> userPreferredLanguages() const; |
| 259 void setUserPreferredLanguages(const Vector<String>&); | 259 void setUserPreferredLanguages(const Vector<String>&); |
| 260 | 260 |
| 261 unsigned mediaKeysCount(); | 261 unsigned mediaKeysCount(); |
| 262 unsigned mediaKeySessionCount(); | 262 unsigned mediaKeySessionCount(); |
| 263 unsigned suspendableObjectCount(Document*); | 263 unsigned suspendableObjectCount(Document*); |
| 264 unsigned wheelEventHandlerCount(Document*); | 264 unsigned wheelEventHandlerCount(Document*); |
| 265 unsigned scrollEventHandlerCount(Document*); | 265 unsigned scrollEventHandlerCount(Document*); |
| 266 unsigned touchStartOrMoveEventHandlerCount(Document*); | 266 unsigned touchStartOrMoveEventHandlerCount(Document*); |
| 267 unsigned touchEndOrCancelEventHandlerCount(Document*); | 267 unsigned touchEndOrCancelEventHandlerCount(Document*); |
| 268 unsigned pointerEventHandlerCount(Document*); |
| 269 |
| 268 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); | 270 LayerRectList* touchEventTargetLayerRects(Document*, ExceptionState&); |
| 269 | 271 |
| 270 bool executeCommand(Document*, | 272 bool executeCommand(Document*, |
| 271 const String& name, | 273 const String& name, |
| 272 const String& value, | 274 const String& value, |
| 273 ExceptionState&); | 275 ExceptionState&); |
| 274 | 276 |
| 275 AtomicString htmlNamespace(); | 277 AtomicString htmlNamespace(); |
| 276 Vector<AtomicString> htmlTags(); | 278 Vector<AtomicString> htmlTags(); |
| 277 AtomicString svgNamespace(); | 279 AtomicString svgNamespace(); |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 const String& marker_type, | 566 const String& marker_type, |
| 565 unsigned index, | 567 unsigned index, |
| 566 ExceptionState&); | 568 ExceptionState&); |
| 567 Member<InternalRuntimeFlags> runtime_flags_; | 569 Member<InternalRuntimeFlags> runtime_flags_; |
| 568 Member<Document> document_; | 570 Member<Document> document_; |
| 569 }; | 571 }; |
| 570 | 572 |
| 571 } // namespace blink | 573 } // namespace blink |
| 572 | 574 |
| 573 #endif // Internals_h | 575 #endif // Internals_h |
| OLD | NEW |