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

Side by Side Diff: core/fxcrt/fx_bidi.cpp

Issue 1800523005: Move core/src/ up to core/. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « core/fxcrt/fx_basic_wstring_unittest.cpp ('k') | core/fxcrt/fx_bidi_unittest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include "core/include/fxcrt/fx_bidi.h" 7 #include "core/include/fxcrt/fx_bidi.h"
8 #include "core/include/fxcrt/fx_ucd.h" 8 #include "core/include/fxcrt/fx_ucd.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 if (nR2L > 0 && nR2L >= nL2R) 72 if (nR2L > 0 && nR2L >= nL2R)
73 SetOverallDirectionRight(); 73 SetOverallDirectionRight();
74 } 74 }
75 75
76 void CFX_BidiString::SetOverallDirectionRight() { 76 void CFX_BidiString::SetOverallDirectionRight() {
77 if (m_eOverallDirection != CFX_BidiChar::RIGHT) { 77 if (m_eOverallDirection != CFX_BidiChar::RIGHT) {
78 std::reverse(m_Order.begin(), m_Order.end()); 78 std::reverse(m_Order.begin(), m_Order.end());
79 m_eOverallDirection = CFX_BidiChar::RIGHT; 79 m_eOverallDirection = CFX_BidiChar::RIGHT;
80 } 80 }
81 } 81 }
OLDNEW
« no previous file with comments | « core/fxcrt/fx_basic_wstring_unittest.cpp ('k') | core/fxcrt/fx_bidi_unittest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698