Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Side by Side Diff: Source/web/WebLocalFrameImpl.cpp

Issue 900543003: DevTools: do not abuse inspector controller for the front-end side plumbing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed initializer. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/web/WebLocalFrameImpl.h ('k') | Source/web/WebViewImpl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/web/WebLocalFrameImpl.h ('k') | Source/web/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698