Home | History | Annotate | Download | only in page

Lines Matching refs:frame

27 #include "core/frame/LocalFrame.h"
87 void Chrome::contentsSizeChanged(LocalFrame* frame, const IntSize& size) const
89 m_client->contentsSizeChanged(frame, size);
139 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree().traverseNext()) {
140 if (!frame->isLocalFrame())
142 Document::PageDismissalType dismissal = toLocalFrame(frame)->document()->pageDismissalEventBeingDispatched();
198 bool Chrome::runBeforeUnloadConfirmPanel(const String& message, LocalFrame* frame)
205 bool ok = m_client->runBeforeUnloadConfirmPanel(message, frame);
215 void Chrome::runJavaScriptAlert(LocalFrame* frame, const String& message)
224 ASSERT(frame);
228 m_client->runJavaScriptAlert(frame, message);
232 bool Chrome::runJavaScriptConfirm(LocalFrame* frame, const String& message)
241 ASSERT(frame);
245 bool ok = m_client->runJavaScriptConfirm(frame, message);
250 bool Chrome::runJavaScriptPrompt(LocalFrame* frame, const String& prompt, const String& defaultValue, String& result)
259 ASSERT(frame);
263 bool ok = m_client->runJavaScriptPrompt(frame, prompt, defaultValue, result);
269 void Chrome::setStatusbarText(LocalFrame* frame, const String& status)
271 ASSERT(frame);
319 void Chrome::print(LocalFrame* frame)
325 m_client->print(frame);
333 PassOwnPtr<ColorChooser> Chrome::createColorChooser(LocalFrame* frame, ColorChooserClient* client, const Color& initialColor)
336 return m_client->createColorChooser(frame, client, initialColor);
351 void Chrome::runOpenPanel(LocalFrame* frame, PassRefPtr<FileChooser> fileChooser)
354 m_client->runOpenPanel(frame, fileChooser);
380 PassRefPtrWillBeRawPtr<PopupMenu> Chrome::createPopupMenu(LocalFrame& frame, PopupMenuClient* client) const
383 return m_client->createPopupMenu(frame, client);