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

Unified Diff: Source/core/rendering/RenderBlock.cpp

Issue 15179002: Remove code that is unused after ContextMenu cleanup (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove canHandleRequest code from DRT Created 7 years, 7 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
« no previous file with comments | « Source/core/rendering/RenderBlock.h ('k') | Tools/DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderBlock.cpp
diff --git a/Source/core/rendering/RenderBlock.cpp b/Source/core/rendering/RenderBlock.cpp
index f7fe32715ce2a25006fdd18e8af4a1ebf2e6bb06..1cf46af5b6240c4ef6f40a6e60bfee90f5bfcd08 100644
--- a/Source/core/rendering/RenderBlock.cpp
+++ b/Source/core/rendering/RenderBlock.cpp
@@ -6508,17 +6508,6 @@ int RenderBlock::lastLineBoxBaseline(LineDirectionMode lineDirection) const
return -1;
}
-bool RenderBlock::containsNonZeroBidiLevel() const
-{
- for (RootInlineBox* root = firstRootBox(); root; root = root->nextRootBox()) {
- for (InlineBox* box = root->firstLeafChild(); box; box = box->nextLeafChild()) {
- if (box->bidiLevel())
- return true;
- }
- }
- return false;
-}
-
RenderBlock* RenderBlock::firstLineBlock() const
{
RenderBlock* firstLineBlock = const_cast<RenderBlock*>(this);
« no previous file with comments | « Source/core/rendering/RenderBlock.h ('k') | Tools/DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698