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

Unified Diff: third_party/WebKit/Source/core/layout/BidiRunForLine.cpp

Issue 1367123002: Remove include guards in .cpp file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 | « third_party/WebKit/Source/core/fetch/ResourceLoaderOptionsTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/BidiRunForLine.cpp
diff --git a/third_party/WebKit/Source/core/layout/BidiRunForLine.cpp b/third_party/WebKit/Source/core/layout/BidiRunForLine.cpp
index 3a65ac884ed7ad21d7875979973e73040abc2f0a..8ade9f83e1e5b644137cd5acf5b6874d37fa978e 100644
--- a/third_party/WebKit/Source/core/layout/BidiRunForLine.cpp
+++ b/third_party/WebKit/Source/core/layout/BidiRunForLine.cpp
@@ -21,9 +21,6 @@
*
*/
-#ifndef BidiRunForLine_h
-#define BidiRunForLine_h
-
#include "config.h"
#include "core/layout/BidiRunForLine.h"
@@ -81,7 +78,7 @@ static LayoutObject* firstLayoutObjectForDirectionalityDetermination(
}
TextDirection determinePlaintextDirectionality(LayoutObject* root,
- LayoutObject* current = 0, unsigned pos = 0)
+ LayoutObject* current, unsigned pos)
{
LayoutObject* firstLayoutObject = firstLayoutObjectForDirectionalityDetermination(root, current);
InlineIterator iter(LineLayoutItem(root), LineLayoutItem(firstLayoutObject), firstLayoutObject == current ? pos : 0);
@@ -227,5 +224,3 @@ void constructBidiRunsForLine(InlineBidiResolver& topResolver,
}
} // namespace blink
-
-#endif // BidiRunForLine_h
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ResourceLoaderOptionsTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698