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

Unified Diff: third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp

Issue 2395543002: reflow comments in modules/[mediasource,plugins] (Closed)
Patch Set: Created 4 years, 2 months 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
diff --git a/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp b/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
index 8e17347b52e356e90aff96b45cd65fb691edd951..a738ac0d1f16e935061db18fedad2c89af7dd9e9 100644
--- a/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
+++ b/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
@@ -41,7 +41,8 @@
#include "platform/Widget.h"
#include "wtf/HashSet.h"
-// This file provides a utility function to support rendering certain elements above plugins.
+// This file provides a utility function to support rendering certain elements
+// above plugins.
namespace blink {
@@ -79,11 +80,11 @@ static bool iframeIsAbovePlugin(
return false;
}
- // If the plugin does not have an explicit z-index it stacks behind the iframe.
- // This is for maintaining compatibility with IE.
+ // If the plugin does not have an explicit z-index it stacks behind the
+ // iframe. This is for maintaining compatibility with IE.
if (!ro2->isPositioned()) {
- // The 0'th elements of these LayoutObject arrays represent the plugin node and
- // the iframe.
+ // The 0'th elements of these LayoutObject arrays represent the plugin
+ // node and the iframe.
const LayoutObject* pluginLayoutObject = pluginZstack[0];
const LayoutObject* iframeLayoutObject = iframeZstack[0];

Powered by Google App Engine
This is Rietveld 408576698