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

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

Issue 2060913003: Make code compile with clang_use_chrome_plugin (part II) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: rebase Created 4 years, 6 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_bidi.h ('k') | core/fxcrt/fx_extension.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/fxcrt/fx_bidi.h" 7 #include "core/fxcrt/fx_bidi.h"
8 #include "core/fxcrt/include/fx_ucd.h" 8 #include "core/fxcrt/include/fx_ucd.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 66
67 size_t nL2R = std::count_if(m_Order.begin(), m_Order.end(), 67 size_t nL2R = std::count_if(m_Order.begin(), m_Order.end(),
68 [](const CFX_BidiChar::Segment& seg) { 68 [](const CFX_BidiChar::Segment& seg) {
69 return seg.direction == CFX_BidiChar::LEFT; 69 return seg.direction == CFX_BidiChar::LEFT;
70 }); 70 });
71 71
72 if (nR2L > 0 && nR2L >= nL2R) 72 if (nR2L > 0 && nR2L >= nL2R)
73 SetOverallDirectionRight(); 73 SetOverallDirectionRight();
74 } 74 }
75 75
76 CFX_BidiString::~CFX_BidiString() {}
77
76 void CFX_BidiString::SetOverallDirectionRight() { 78 void CFX_BidiString::SetOverallDirectionRight() {
77 if (m_eOverallDirection != CFX_BidiChar::RIGHT) { 79 if (m_eOverallDirection != CFX_BidiChar::RIGHT) {
78 std::reverse(m_Order.begin(), m_Order.end()); 80 std::reverse(m_Order.begin(), m_Order.end());
79 m_eOverallDirection = CFX_BidiChar::RIGHT; 81 m_eOverallDirection = CFX_BidiChar::RIGHT;
80 } 82 }
81 } 83 }
OLDNEW
« no previous file with comments | « core/fxcrt/fx_bidi.h ('k') | core/fxcrt/fx_extension.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698