| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  292  |  292  | 
|  293     String getImageSourceURL(Element*, ExceptionState&); |  293     String getImageSourceURL(Element*, ExceptionState&); | 
|  294  |  294  | 
|  295     bool isSelectPopupVisible(Node*); |  295     bool isSelectPopupVisible(Node*); | 
|  296  |  296  | 
|  297     PassRefPtr<ClientRect> selectionBounds(ExceptionState&); |  297     PassRefPtr<ClientRect> selectionBounds(ExceptionState&); | 
|  298     String baseURL(Document*, ExceptionState&); |  298     String baseURL(Document*, ExceptionState&); | 
|  299  |  299  | 
|  300     bool loseSharedGraphicsContext3D(); |  300     bool loseSharedGraphicsContext3D(); | 
|  301  |  301  | 
 |  302     void forceCompositingUpdate(Document*, ExceptionState&); | 
 |  303  | 
|  302 private: |  304 private: | 
|  303     explicit Internals(Document*); |  305     explicit Internals(Document*); | 
|  304     Document* contextDocument() const; |  306     Document* contextDocument() const; | 
|  305     Frame* frame() const; |  307     Frame* frame() const; | 
|  306     Vector<String> iconURLs(Document*, int iconTypesMask) const; |  308     Vector<String> iconURLs(Document*, int iconTypesMask) const; | 
|  307     PassRefPtr<ClientRectList> annotatedRegions(Document*, bool draggable, Excep
     tionState&); |  309     PassRefPtr<ClientRectList> annotatedRegions(Document*, bool draggable, Excep
     tionState&); | 
|  308  |  310  | 
|  309     DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
     ceptionState&); |  311     DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
     ceptionState&); | 
|  310     RefPtr<DOMWindow> m_frontendWindow; |  312     RefPtr<DOMWindow> m_frontendWindow; | 
|  311     OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |  313     OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 
|  312     RefPtr<InternalRuntimeFlags> m_runtimeFlags; |  314     RefPtr<InternalRuntimeFlags> m_runtimeFlags; | 
|  313     RefPtr<ScrollingCoordinator> m_scrollingCoordinator; |  315     RefPtr<ScrollingCoordinator> m_scrollingCoordinator; | 
|  314     RefPtr<InternalProfilers> m_profilers; |  316     RefPtr<InternalProfilers> m_profilers; | 
|  315 }; |  317 }; | 
|  316  |  318  | 
|  317 } // namespace WebCore |  319 } // namespace WebCore | 
|  318  |  320  | 
|  319 #endif |  321 #endif | 
| OLD | NEW |