tizen beta release
[profile/ivi/webkit-efl.git] / Source / WebKit / chromium / src / InspectorFrontendClientImpl.cpp
1 /*
2  * Copyright (C) 2010 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include "config.h"
32 #include "InspectorFrontendClientImpl.h"
33
34 #include "Document.h"
35 #include "Frame.h"
36 #include "InspectorFrontendHost.h"
37 #include "Page.h"
38 #include "PlatformString.h"
39 #include "V8InspectorFrontendHost.h"
40 #include "V8Proxy.h"
41 #include "WebDevToolsFrontendClient.h"
42 #include "WebDevToolsFrontendImpl.h"
43 #include "WebFloatPoint.h"
44 #include "WebString.h"
45
46 using namespace WebCore;
47
48 namespace WebKit {
49
50 InspectorFrontendClientImpl::InspectorFrontendClientImpl(Page* frontendPage, WebDevToolsFrontendClient* client, WebDevToolsFrontendImpl* frontend)
51     : m_frontendPage(frontendPage)
52     , m_client(client)
53     , m_frontend(frontend)
54 {
55 }
56
57 InspectorFrontendClientImpl::~InspectorFrontendClientImpl()
58 {
59     if (m_frontendHost)
60         m_frontendHost->disconnectClient();
61     m_client = 0;
62 }
63
64 void InspectorFrontendClientImpl::windowObjectCleared()
65 {
66     v8::HandleScope handleScope;
67     v8::Handle<v8::Context> frameContext = V8Proxy::context(m_frontendPage->mainFrame());
68     v8::Context::Scope contextScope(frameContext);
69
70     ASSERT(!m_frontendHost);
71     m_frontendHost = InspectorFrontendHost::create(this, m_frontendPage);
72     v8::Handle<v8::Value> frontendHostObj = toV8(m_frontendHost.get());
73     v8::Handle<v8::Object> global = frameContext->Global();
74
75     global->Set(v8::String::New("InspectorFrontendHost"), frontendHostObj);
76 }
77
78 void InspectorFrontendClientImpl::frontendLoaded()
79 {
80 }
81
82 void InspectorFrontendClientImpl::moveWindowBy(float x, float y)
83 {
84     m_client->moveWindowBy(WebFloatPoint(x, y));
85 }
86
87 String InspectorFrontendClientImpl::localizedStringsURL()
88 {
89     return "";
90 }
91
92 String InspectorFrontendClientImpl::hiddenPanels()
93 {
94     return "";
95 }
96
97 void InspectorFrontendClientImpl::bringToFront()
98 {
99     m_client->activateWindow();
100 }
101
102 void InspectorFrontendClientImpl::closeWindow()
103 {
104     m_client->closeWindow();
105 }
106
107 void InspectorFrontendClientImpl::requestAttachWindow()
108 {
109     m_client->requestDockWindow();
110 }
111
112 void InspectorFrontendClientImpl::requestDetachWindow()
113 {
114     m_client->requestUndockWindow();
115 }
116
117 void InspectorFrontendClientImpl::changeAttachedWindowHeight(unsigned)
118 {
119     // Do nothing;
120 }
121
122 void InspectorFrontendClientImpl::saveAs(const String& fileName, const String& content)
123 {
124     m_client->saveAs(fileName, content);
125 }
126
127 void InspectorFrontendClientImpl::inspectedURLChanged(const String& url)
128 {
129     m_frontendPage->mainFrame()->document()->setTitle("Developer Tools - " + url);
130 }
131
132 void InspectorFrontendClientImpl::sendMessageToBackend(const String& message)
133 {
134     m_client->sendMessageToBackend(message);
135 }
136
137 } // namespace WebKit