| 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 1545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1556 | 1556 |
| 1557 WebLocalFrameImpl::WebLocalFrameImpl(WebFrameClient* client) | 1557 WebLocalFrameImpl::WebLocalFrameImpl(WebFrameClient* client) |
| 1558 : m_frameLoaderClientImpl(this) | 1558 : m_frameLoaderClientImpl(this) |
| 1559 , m_frameWidget(0) | 1559 , m_frameWidget(0) |
| 1560 , m_client(client) | 1560 , m_client(client) |
| 1561 , m_autofillClient(0) | 1561 , m_autofillClient(0) |
| 1562 , m_permissionClient(0) | 1562 , m_permissionClient(0) |
| 1563 , m_inputEventsScaleFactorForEmulation(1) | 1563 , m_inputEventsScaleFactorForEmulation(1) |
| 1564 , m_userMediaClientImpl(this) | 1564 , m_userMediaClientImpl(this) |
| 1565 , m_geolocationClientProxy(GeolocationClientProxy::create(client ? client->g
eolocationClient() : 0)) | 1565 , m_geolocationClientProxy(GeolocationClientProxy::create(client ? client->g
eolocationClient() : 0)) |
| 1566 , m_webDevToolsFrontend(0) |
| 1566 #if ENABLE(OILPAN) | 1567 #if ENABLE(OILPAN) |
| 1567 , m_selfKeepAlive(this) | 1568 , m_selfKeepAlive(this) |
| 1568 #endif | 1569 #endif |
| 1569 { | 1570 { |
| 1570 Platform::current()->incrementStatsCounter(webFrameActiveCount); | 1571 Platform::current()->incrementStatsCounter(webFrameActiveCount); |
| 1571 frameCount++; | 1572 frameCount++; |
| 1572 } | 1573 } |
| 1573 | 1574 |
| 1574 WebLocalFrameImpl::~WebLocalFrameImpl() | 1575 WebLocalFrameImpl::~WebLocalFrameImpl() |
| 1575 { | 1576 { |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2008 { | 2009 { |
| 2009 m_frameWidget = frameWidget; | 2010 m_frameWidget = frameWidget; |
| 2010 } | 2011 } |
| 2011 | 2012 |
| 2012 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const | 2013 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const |
| 2013 { | 2014 { |
| 2014 return m_frameWidget; | 2015 return m_frameWidget; |
| 2015 } | 2016 } |
| 2016 | 2017 |
| 2017 } // namespace blink | 2018 } // namespace blink |
| OLD | NEW |