Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: Source/core/frame/FrameView.h

Issue 23618022: BrowserPlugin/WebView - Move plugin lifetime to DOM (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comments. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 Copyright (C) 1997 Martin Jones (mjones@kde.org) 2 Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 (C) 1998 Waldo Bastian (bastian@kde.org) 3 (C) 1998 Waldo Bastian (bastian@kde.org)
4 (C) 1998, 1999 Torben Weis (weis@kde.org) 4 (C) 1998, 1999 Torben Weis (weis@kde.org)
5 (C) 1999 Lars Knoll (knoll@kde.org) 5 (C) 1999 Lars Knoll (knoll@kde.org)
6 (C) 1999 Antti Koivisto (koivisto@kde.org) 6 (C) 1999 Antti Koivisto (koivisto@kde.org)
7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
8 8
9 This library is free software; you can redistribute it and/or 9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Library General Public 10 modify it under the terms of the GNU Library General Public
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 void setLayoutSizeInternal(const IntSize&); 449 void setLayoutSizeInternal(const IntSize&);
450 450
451 static double s_currentFrameTimeStamp; // used for detecting decoded resourc e thrash in the cache 451 static double s_currentFrameTimeStamp; // used for detecting decoded resourc e thrash in the cache
452 static bool s_inPaintContents; 452 static bool s_inPaintContents;
453 453
454 LayoutSize m_size; 454 LayoutSize m_size;
455 LayoutSize m_margins; 455 LayoutSize m_margins;
456 456
457 typedef HashSet<RefPtr<RenderEmbeddedObject> > EmbeddedObjectSet; 457 typedef HashSet<RefPtr<RenderEmbeddedObject> > EmbeddedObjectSet;
458 EmbeddedObjectSet m_widgetUpdateSet; 458 EmbeddedObjectSet m_widgetUpdateSet;
459
eseidel 2013/12/24 00:02:04 spurious.
wjmaclean 2013/12/24 00:14:32 Done.
460 RefPtr<Frame> m_frame; 459 RefPtr<Frame> m_frame;
461 460
462 bool m_doFullRepaint; 461 bool m_doFullRepaint;
463 462
464 bool m_canHaveScrollbars; 463 bool m_canHaveScrollbars;
465 bool m_cannotBlitToWindow; 464 bool m_cannotBlitToWindow;
466 bool m_isOverlapped; 465 bool m_isOverlapped;
467 bool m_contentIsOpaque; 466 bool m_contentIsOpaque;
468 unsigned m_slowRepaintObjectCount; 467 unsigned m_slowRepaintObjectCount;
469 int m_borderX; 468 int m_borderX;
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 static const unsigned visualPixelThreshold = 32 * 32; 579 static const unsigned visualPixelThreshold = 32 * 32;
581 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold) 580 if (m_visuallyNonEmptyPixelCount > visualPixelThreshold)
582 setIsVisuallyNonEmpty(); 581 setIsVisuallyNonEmpty();
583 } 582 }
584 583
585 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra meView()); 584 DEFINE_TYPE_CASTS(FrameView, Widget, widget, widget->isFrameView(), widget.isFra meView());
586 585
587 } // namespace WebCore 586 } // namespace WebCore
588 587
589 #endif // FrameView_h 588 #endif // FrameView_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698