*/
#include "config.h"
-
-#if ENABLE(INSPECTOR)
-
#include "InspectorFrontendClientLocal.h"
#include "Chrome.h"
#include "DOMWrapperWorld.h"
#include "Document.h"
#include "FloatRect.h"
-#include "Frame.h"
#include "FrameLoadRequest.h"
#include "FrameLoader.h"
#include "FrameView.h"
-#include "InspectorBackendDispatcher.h"
#include "InspectorController.h"
#include "InspectorFrontendHost.h"
#include "InspectorPageAgent.h"
+#include "MainFrame.h"
#include "Page.h"
#include "ScriptController.h"
-#include "ScriptFunctionCall.h"
-#include "ScriptObject.h"
+#include "ScriptGlobalObject.h"
#include "ScriptState.h"
#include "Settings.h"
#include "Timer.h"
#include "UserGestureIndicator.h"
#include "WindowFeatures.h"
+#include <bindings/ScriptValue.h>
+#include <inspector/InspectorBackendDispatchers.h>
#include <wtf/Deque.h>
#include <wtf/text/CString.h>
-#include <wtf/text/WTFString.h>
+
+using namespace Inspector;
namespace WebCore {
public:
InspectorBackendDispatchTask(InspectorController* inspectorController)
: m_inspectorController(inspectorController)
- , m_timer(this, &InspectorBackendDispatchTask::onTimer)
+ , m_timer(*this, &InspectorBackendDispatchTask::timerFired)
{
}
m_timer.stop();
}
- void onTimer(Timer<InspectorBackendDispatchTask>*)
+ void timerFired()
{
if (!m_messages.isEmpty()) {
// Dispatch can lead to the timer destruction -> schedule the next shot first.
private:
InspectorController* m_inspectorController;
- Timer<InspectorBackendDispatchTask> m_timer;
+ Timer m_timer;
Deque<String> m_messages;
};
{
}
-InspectorFrontendClientLocal::InspectorFrontendClientLocal(InspectorController* inspectorController, Page* frontendPage, PassOwnPtr<Settings> settings)
+InspectorFrontendClientLocal::InspectorFrontendClientLocal(InspectorController* inspectorController, Page* frontendPage, std::unique_ptr<Settings> settings)
: m_inspectorController(inspectorController)
, m_frontendPage(frontendPage)
- , m_settings(settings)
+ , m_settings(WTF::move(settings))
, m_frontendLoaded(false)
- , m_dockSide(UNDOCKED)
+ , m_dockSide(DockSide::Undocked)
{
m_frontendPage->settings().setAllowFileAccessFromFileURLs(true);
- m_dispatchTask = adoptPtr(new InspectorBackendDispatchTask(inspectorController));
+ m_frontendPage->settings().setJavaScriptRuntimeFlags({
+ JSC::RuntimeFlags::SymbolEnabled
+ });
+ m_dispatchTask = std::make_unique<InspectorBackendDispatchTask>(inspectorController);
}
InspectorFrontendClientLocal::~InspectorFrontendClientLocal()
void InspectorFrontendClientLocal::requestSetDockSide(DockSide dockSide)
{
- if (dockSide == UNDOCKED) {
+ if (dockSide == DockSide::Undocked) {
detachWindow();
setAttachedWindow(dockSide);
} else if (canAttachWindow()) {
return false;
// If we are already attached, allow attaching again to allow switching sides.
- if (m_dockSide != UNDOCKED)
+ if (m_dockSide != DockSide::Undocked)
return true;
// Don't allow the attach if the window would be too small to accommodate the minimum inspector size.
- unsigned inspectedPageHeight = m_inspectorController->inspectedPage()->mainFrame().view()->visibleHeight();
- unsigned inspectedPageWidth = m_inspectorController->inspectedPage()->mainFrame().view()->visibleWidth();
+ unsigned inspectedPageHeight = m_inspectorController->inspectedPage().mainFrame().view()->visibleHeight();
+ unsigned inspectedPageWidth = m_inspectorController->inspectedPage().mainFrame().view()->visibleWidth();
unsigned maximumAttachedHeight = inspectedPageHeight * maximumAttachedHeightRatio;
return minimumAttachedHeight <= maximumAttachedHeight && minimumAttachedWidth <= inspectedPageWidth;
}
void InspectorFrontendClientLocal::changeAttachedWindowHeight(unsigned height)
{
- unsigned totalHeight = m_frontendPage->mainFrame().view()->visibleHeight() + m_inspectorController->inspectedPage()->mainFrame().view()->visibleHeight();
+ unsigned totalHeight = m_frontendPage->mainFrame().view()->visibleHeight() + m_inspectorController->inspectedPage().mainFrame().view()->visibleHeight();
unsigned attachedHeight = constrainedAttachedWindowHeight(height, totalHeight);
m_settings->setProperty(inspectorAttachedHeightSetting, String::number(attachedHeight));
setAttachedWindowHeight(attachedHeight);
void InspectorFrontendClientLocal::changeAttachedWindowWidth(unsigned width)
{
- unsigned totalWidth = m_frontendPage->mainFrame().view()->visibleWidth() + m_inspectorController->inspectedPage()->mainFrame().view()->visibleWidth();
+ unsigned totalWidth = m_frontendPage->mainFrame().view()->visibleWidth() + m_inspectorController->inspectedPage().mainFrame().view()->visibleWidth();
unsigned attachedWidth = constrainedAttachedWindowWidth(width, totalWidth);
setAttachedWindowWidth(attachedWidth);
}
void InspectorFrontendClientLocal::openInNewTab(const String& url)
{
UserGestureIndicator indicator(DefinitelyProcessingUserGesture);
- Page* page = m_inspectorController->inspectedPage();
- Frame& mainFrame = page->mainFrame();
+ Frame& mainFrame = m_inspectorController->inspectedPage().mainFrame();
FrameLoadRequest request(mainFrame.document()->securityOrigin(), ResourceRequest(), "_blank");
bool created;
frame->page()->setOpenedByDOM();
// FIXME: Why does one use mainFrame and the other frame?
- frame->loader().changeLocation(mainFrame.document()->securityOrigin(), frame->document()->completeURL(url), "", false, false);
+ frame->loader().changeLocation(mainFrame.document()->securityOrigin(), frame->document()->completeURL(url), "", LockHistory::No, LockBackForwardList::No);
}
void InspectorFrontendClientLocal::moveWindowBy(float x, float y)
{
const char* side = "undocked";
switch (dockSide) {
- case UNDOCKED:
+ case DockSide::Undocked:
side = "undocked";
break;
- case DOCKED_TO_RIGHT:
+ case DockSide::Right:
side = "right";
break;
- case DOCKED_TO_BOTTOM:
+ case DockSide::Bottom:
side = "bottom";
break;
}
void InspectorFrontendClientLocal::restoreAttachedWindowHeight()
{
- unsigned inspectedPageHeight = m_inspectorController->inspectedPage()->mainFrame().view()->visibleHeight();
+ unsigned inspectedPageHeight = m_inspectorController->inspectedPage().mainFrame().view()->visibleHeight();
String value = m_settings->getProperty(inspectorAttachedHeightSetting);
unsigned preferredHeight = value.isEmpty() ? defaultAttachedHeight : value.toUInt();
bool InspectorFrontendClientLocal::evaluateAsBoolean(const String& expression)
{
- ScriptValue value = m_frontendPage->mainFrame().script().executeScript(expression);
+ Deprecated::ScriptValue value = m_frontendPage->mainFrame().script().executeScript(expression);
return value.toString(mainWorldExecState(&m_frontendPage->mainFrame())) == "true";
}
}
} // namespace WebCore
-
-#endif