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

Side by Side Diff: xfa/fwl/core/cfwl_edit.cpp

Issue 2506493003: Continue nit cleanup in fwl/core (Closed)
Patch Set: review feedback Created 4 years, 1 month 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 | « xfa/fwl/core/cfwl_combobox.cpp ('k') | xfa/fwl/core/cfwl_listbox.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 "xfa/fwl/core/cfwl_edit.h" 7 #include "xfa/fwl/core/cfwl_edit.h"
8 8
9 #include <memory> 9 #include <memory>
10 #include <vector> 10 #include <vector>
11 11
12 #include "third_party/base/ptr_util.h" 12 #include "third_party/base/ptr_util.h"
13 13
14 namespace { 14 namespace {
15 15
16 IFWL_Edit* ToEdit(IFWL_Widget* widget) { 16 IFWL_Edit* ToEdit(IFWL_Widget* widget) {
17 return static_cast<IFWL_Edit*>(widget); 17 return static_cast<IFWL_Edit*>(widget);
18 } 18 }
19 19
20 const IFWL_Edit* ToEdit(const IFWL_Widget* widget) {
21 return static_cast<const IFWL_Edit*>(widget);
22 }
23
24 } // namespace 20 } // namespace
25 21
26 CFWL_Edit::CFWL_Edit(const IFWL_App* app) : CFWL_Widget(app) {} 22 CFWL_Edit::CFWL_Edit(const IFWL_App* app) : CFWL_Widget(app) {}
27 23
28 CFWL_Edit::~CFWL_Edit() {} 24 CFWL_Edit::~CFWL_Edit() {}
29 25
30 void CFWL_Edit::Initialize() { 26 void CFWL_Edit::Initialize() {
31 ASSERT(!m_pIface); 27 ASSERT(!m_pIface);
32 28
33 m_pIface = pdfium::MakeUnique<IFWL_Edit>( 29 m_pIface = pdfium::MakeUnique<IFWL_Edit>(
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 63
68 void CFWL_Edit::SetAliasChar(FX_WCHAR wAlias) { 64 void CFWL_Edit::SetAliasChar(FX_WCHAR wAlias) {
69 if (GetWidget()) 65 if (GetWidget())
70 ToEdit(GetWidget())->SetAliasChar(wAlias); 66 ToEdit(GetWidget())->SetAliasChar(wAlias);
71 } 67 }
72 68
73 void CFWL_Edit::SetScrollOffset(FX_FLOAT fScrollOffset) { 69 void CFWL_Edit::SetScrollOffset(FX_FLOAT fScrollOffset) {
74 if (GetWidget()) 70 if (GetWidget())
75 ToEdit(GetWidget())->SetScrollOffset(fScrollOffset); 71 ToEdit(GetWidget())->SetScrollOffset(fScrollOffset);
76 } 72 }
OLDNEW
« no previous file with comments | « xfa/fwl/core/cfwl_combobox.cpp ('k') | xfa/fwl/core/cfwl_listbox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698