Chromium Code Reviews| 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 334 unsigned countHitRegions(CanvasRenderingContext2D*); | 334 unsigned countHitRegions(CanvasRenderingContext2D*); |
| 335 | 335 |
| 336 void forcePluginPlaceholder(HTMLElement* plugin, PassRefPtrWillBeRawPtr<Docu mentFragment>, ExceptionState&); | 336 void forcePluginPlaceholder(HTMLElement* plugin, PassRefPtrWillBeRawPtr<Docu mentFragment>, ExceptionState&); |
| 337 void forcePluginPlaceholder(HTMLElement* plugin, const PluginPlaceholderOpti ons&, ExceptionState&); | 337 void forcePluginPlaceholder(HTMLElement* plugin, const PluginPlaceholderOpti ons&, ExceptionState&); |
| 338 | 338 |
| 339 // Scheudle a forced Blink GC run (Oilpan) at the end of event loop. | 339 // Scheudle a forced Blink GC run (Oilpan) at the end of event loop. |
| 340 // Note: This is designed to be only used from PerformanceTests/BlinkGC to e xplicitly measure only Blink GC time. | 340 // Note: This is designed to be only used from PerformanceTests/BlinkGC to e xplicitly measure only Blink GC time. |
| 341 // Normal LayoutTests should use gc() instead as it would trigger both Blink GC and V8 GC. | 341 // Normal LayoutTests should use gc() instead as it would trigger both Blink GC and V8 GC. |
| 342 void forceBlinkGCWithoutV8GC(); | 342 void forceBlinkGCWithoutV8GC(); |
| 343 | 343 |
| 344 String Internals::selectedHTMLForClipboard(); | |
|
tkent
2015/03/17 22:34:19
Remove "Internals::"
yosin_UTC9
2015/03/18 02:05:04
Oops, sorry MSVC accept this...
| |
| 345 String Internals::selectedTextForClipboard(); | |
| 346 | |
| 344 private: | 347 private: |
| 345 explicit Internals(Document*); | 348 explicit Internals(Document*); |
| 346 Document* contextDocument() const; | 349 Document* contextDocument() const; |
| 347 LocalFrame* frame() const; | 350 LocalFrame* frame() const; |
| 348 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 351 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
| 349 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&); | 352 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&); |
| 350 | 353 |
| 351 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); | 354 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); |
| 352 Member<InternalRuntimeFlags> m_runtimeFlags; | 355 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 353 | 356 |
| 354 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 357 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 355 }; | 358 }; |
| 356 | 359 |
| 357 } // namespace blink | 360 } // namespace blink |
| 358 | 361 |
| 359 #endif // Internals_h | 362 #endif // Internals_h |
| OLD | NEW |