| 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 1837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1848 | 1848 |
| 1849 void WebFrameImpl::sendOrientationChangeEvent(int orientation) | 1849 void WebFrameImpl::sendOrientationChangeEvent(int orientation) |
| 1850 { | 1850 { |
| 1851 if (frame()) | 1851 if (frame()) |
| 1852 frame()->sendOrientationChangeEvent(orientation); | 1852 frame()->sendOrientationChangeEvent(orientation); |
| 1853 } | 1853 } |
| 1854 | 1854 |
| 1855 void WebFrameImpl::dispatchMessageEventWithOriginCheck(const WebSecurityOrigin&
intendedTargetOrigin, const WebDOMEvent& event) | 1855 void WebFrameImpl::dispatchMessageEventWithOriginCheck(const WebSecurityOrigin&
intendedTargetOrigin, const WebDOMEvent& event) |
| 1856 { | 1856 { |
| 1857 ASSERT(!event.isNull()); | 1857 ASSERT(!event.isNull()); |
| 1858 frame()->domWindow()->dispatchMessageEventWithOriginCheck(intendedTargetOrig
in.get(), event, nullptr); | 1858 frame()->domWindow()->dispatchMessageEventWithOriginCheck(intendedTargetOrig
in.get(), event.getValue(), nullptr); |
| 1859 } | 1859 } |
| 1860 | 1860 |
| 1861 int WebFrameImpl::findMatchMarkersVersion() const | 1861 int WebFrameImpl::findMatchMarkersVersion() const |
| 1862 { | 1862 { |
| 1863 ASSERT(!parent()); | 1863 ASSERT(!parent()); |
| 1864 return m_findMatchMarkersVersion; | 1864 return m_findMatchMarkersVersion; |
| 1865 } | 1865 } |
| 1866 | 1866 |
| 1867 void WebFrameImpl::clearFindMatchesCache() | 1867 void WebFrameImpl::clearFindMatchesCache() |
| 1868 { | 1868 { |
| (...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2535 | 2535 |
| 2536 // There is a possibility that the frame being detached was the only | 2536 // There is a possibility that the frame being detached was the only |
| 2537 // pending one. We need to make sure final replies can be sent. | 2537 // pending one. We need to make sure final replies can be sent. |
| 2538 flushCurrentScopingEffort(m_findRequestIdentifier); | 2538 flushCurrentScopingEffort(m_findRequestIdentifier); |
| 2539 | 2539 |
| 2540 cancelPendingScopingEffort(); | 2540 cancelPendingScopingEffort(); |
| 2541 } | 2541 } |
| 2542 } | 2542 } |
| 2543 | 2543 |
| 2544 } // namespace blink | 2544 } // namespace blink |
| OLD | NEW |