HomeSort by relevance Sort by last modified time
    Searched full:contentframe (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/chrome/browser/ui/cocoa/
validation_message_bubble_cocoa.mm 50 NSRect contentFrame = [contentView frame];
52 windowFrame.size.width = NSWidth(contentFrame) + kWindowPadding * 2;
53 windowFrame.size.height = NSHeight(contentFrame) + kWindowPadding * 2
64 NSRect contentFrame = NSMakeRect(kWindowPadding, kWindowPadding, 0, 0);
65 FlippedView* contentView = [[FlippedView alloc] initWithFrame:contentFrame];
74 contentFrame.size.height = image.size.height;
77 NSRect textFrame = NSMakeRect(textX, 0, NSWidth(contentFrame) - textX, 0);
99 contentFrame.size.width = NSMaxX(textFrame);
100 contentFrame.size.height =
101 std::max(NSHeight(contentFrame), NSHeight(textFrame))
    [all...]
website_settings_bubble_controller.mm 318 NSRect contentFrame = NSMakeRect(0, 0, [self defaultWindowWidth], 300);
320 [[FlippedView alloc] initWithFrame:contentFrame]);
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_window_controller.mm 56 NSRect contentFrame = [contentView frame];
60 NSHeight(contentFrame));
69 NSRect contentFrame = [tabContentArea_ frame];
71 NSMakeRect(0, NSMaxY(contentFrame),
72 NSWidth(contentFrame),
83 NSRect contentFrame = [[[self window] contentView] frame];
84 contentAreaHeightDelta_ = NSHeight(contentFrame) - NSHeight(tabFrame);
89 tabFrame.size.height = contentFrame.size.height;
97 tabFrame.size.height = contentFrame.size.height;
  /external/chromium_org/third_party/WebKit/Source/core/testing/
MockPagePopupDriver.cpp 72 Frame* contentFrame = m_iframe->contentFrame();
73 DocumentWriter* writer = contentFrame->loader().activeDocumentLoader()->beginWriting("text/html", "UTF-8");
77 contentFrame->loader().activeDocumentLoader()->endWriting(writer);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameElementBase.cpp 95 if (!contentFrame() || scriptURL.isEmpty())
97 contentFrame()->script().executeScriptIfJavaScriptURL(scriptURL);
167 if (Frame* frame = contentFrame())
197 page->focusController().setFocusedFrame(contentFrame());
198 else if (page->focusController().focusedFrame() == contentFrame()) // Focus may have already been given to another frame, don't take it away.
HTMLFrameOwnerElement.cpp 83 if (Frame* frame = contentFrame()) {
127 if (contentFrame()) {
128 contentFrame()->navigationScheduler().scheduleLocationChange(&document(), url.string(), document().outgoingReferrer(), lockBackForwardList);
HTMLFrameOwnerElement.h 39 Frame* contentFrame() const { return m_contentFrame; }
HTMLPlugInElement.cpp 389 if (contentFrame() && protocolIsJavaScript(completeURL)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderPart.cpp 89 if (element->contentFrame() && element->contentFrame()->remotePlatformLayer())
CompositedLayerMapping.cpp 517 } else if (renderer->node() && renderer->node()->isFrameOwnerElement() && toHTMLFrameOwnerElement(renderer->node())->contentFrame()) {
518 blink::WebLayer* layer = toHTMLFrameOwnerElement(renderer->node())->contentFrame()->remotePlatformLayer();
    [all...]
RenderLayerCompositor.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.cpp 118 ASSERT(frame && frame->contentFrame());
119 return FocusNavigationScope(frame->contentFrame()->document());
289 if (!owner->contentFrame())
380 if (!owner->contentFrame())
384 setFocusedFrame(owner->contentFrame());
727 if (frameOwnerElement(candidate) && (!frameOwnerElement(candidate)->contentFrame() || candidate.rect.isEmpty()))
820 // If we have an iframe without the src attribute, it will not have a contentFrame().
823 ASSERT(frameElement->contentFrame());
834 frameElement->contentFrame()->document()->updateLayoutIgnorePendingStylesheets();
835 if (!advanceFocusDirectionallyInContainer(frameElement->contentFrame()->document(), rect, direction))
    [all...]
PageSerializer.cpp 156 Frame* frame = frameOwner->contentFrame();
  /external/chromium_org/chrome_frame/turndown_prompt/
turndown_prompt_content.cc 20 // The window must discard its ContentFrame pointer at this time.
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLFrameElementCustom.cpp 51 if (protocolIsJavaScript(stripLeadingAndTrailingHTMLSpaces(locationValue)) && !BindingSecurity::shouldAllowAccessToFrame(frame->contentFrame(), exceptionState)) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNodeAlgorithms.cpp 133 if (node.isFrameOwnerElement() && toHTMLFrameOwnerElement(node).contentFrame())
  /external/chromium_org/ui/message_center/cocoa/
notification_controller.mm 719 NSRect iconFrame, contentFrame;
720 NSDivideRect([[self view] bounds], &iconFrame, &contentFrame,
723 contentFrame.size.width -= NSWidth([closeButton_ frame]);
724 return contentFrame;
  /external/chromium/chrome/browser/ui/cocoa/
page_info_bubble_controller.mm 273 NSRect contentFrame = NSMakeRect(0, 0, kWindowWidth, offset);
275 [[PageInfoContentView alloc] initWithFrame:contentFrame]);
  /external/chromium_org/chrome/browser/ui/cocoa/panels/
panel_window_controller_cocoa.mm 231 NSRect contentFrame = [self contentRectForFrameRect:[[self window] frame]];
232 contentFrame.origin = NSZeroPoint;
235 if (!NSEqualRects([contentView frame], contentFrame))
236 [contentView setFrame:contentFrame];
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebPageSerializer.cpp 116 if (Frame* frame = toHTMLFrameOwnerElement(element)->contentFrame()) {
WebFrameImpl.cpp 726 return fromFrame(toHTMLFrameOwnerElement(node)->contentFrame());
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_section_container.mm 239 NSRect contentFrame = NSInsetRect(viewFrame,
245 NSDivideRect(contentFrame, &labelFrame, &controlFrame,
  /frameworks/base/core/java/android/view/
WindowManagerPolicy.java 159 * @param contentFrame The frame within the display in which we would
172 Rect overlayFrame, Rect contentFrame, Rect visibleFrame, Rect decorFrame);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8WindowShell.cpp 440 if (node->hasTagName(HTMLNames::iframeTag) && (frame = toHTMLIFrameElement(node)->contentFrame()))
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.cpp     [all...]

Completed in 816 milliseconds

1 2