Home | History | Annotate | Download | only in page

Lines Matching full:frame

29 #include "Frame.h"
95 void Chrome::contentsSizeChanged(Frame* frame, const IntSize& size) const
97 m_client->contentsSizeChanged(frame, size);
162 Page* Chrome::createWindow(Frame* frame, const FrameLoadRequest& request, const WindowFeatures& features) const
164 Page* newPage = m_client->createWindow(frame, request, features);
253 bool Chrome::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
259 return m_client->runBeforeUnloadConfirmPanel(message, frame);
267 void Chrome::runJavaScriptAlert(Frame* frame, const String& message)
273 ASSERT(frame);
274 m_client->runJavaScriptAlert(frame, frame->displayStringModifiedByEncoding(message));
277 bool Chrome::runJavaScriptConfirm(Frame* frame, const String& message)
283 ASSERT(frame);
284 return m_client->runJavaScriptConfirm(frame, frame->displayStringModifiedByEncoding(message));
287 bool Chrome::runJavaScriptPrompt(Frame* frame, const String& prompt, const String& defaultValue, String& result)
293 ASSERT(frame);
294 bool ok = m_client->runJavaScriptPrompt(frame, frame->displayStringModifiedByEncoding(prompt), frame->displayStringModifiedByEncoding(defaultValue), result);
297 result = frame->displayStringModifiedByEncoding(result);
302 void Chrome::setStatusbarText(Frame* frame, const String& status)
304 ASSERT(frame);
305 m_client->setStatusbarText(frame->displayStringModifiedByEncoding(status));
410 void Chrome::print(Frame* frame)
412 m_client->print(frame);
415 void Chrome::requestGeolocationPermissionForFrame(Frame* frame, Geolocation* geolocation)
417 m_client->requestGeolocationPermissionForFrame(frame, geolocation);
420 void Chrome::cancelGeolocationPermissionRequestForFrame(Frame* frame)
422 m_client->cancelGeolocationPermissionRequestForFrame(frame);
425 void Chrome::runOpenPanel(Frame* frame, PassRefPtr<FileChooser> fileChooser)
427 m_client->runOpenPanel(frame, fileChooser);