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

Side by Side Diff: Source/core/html/shadow/DateTimeEditElement.h

Issue 106423003: [oilpan] Rename visit to mark. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Address comments. Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/MediaController.h ('k') | Source/core/html/shadow/DateTimeEditElement.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 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 void setEmptyValue(const LayoutParameters&, const DateComponents& dateForRea dOnlyField); 99 void setEmptyValue(const LayoutParameters&, const DateComponents& dateForRea dOnlyField);
100 void setValueAsDate(const LayoutParameters&, const DateComponents&); 100 void setValueAsDate(const LayoutParameters&, const DateComponents&);
101 void setValueAsDateTimeFieldsState(const DateTimeFieldsState&); 101 void setValueAsDateTimeFieldsState(const DateTimeFieldsState&);
102 void setOnlyYearMonthDay(const DateComponents&); 102 void setOnlyYearMonthDay(const DateComponents&);
103 void stepDown(); 103 void stepDown();
104 void stepUp(); 104 void stepUp();
105 String value() const; 105 String value() const;
106 DateTimeFieldsState valueAsDateTimeFieldsState() const; 106 DateTimeFieldsState valueAsDateTimeFieldsState() const;
107 107
108 virtual void trace(Visitor*) OVERRIDE; 108 virtual void trace(Visitor*) OVERRIDE;
109 virtual void visitWith(Visitor*) const OVERRIDE; 109 virtual void adjustAndMark(Visitor*) const OVERRIDE;
110 110
111 private: 111 private:
112 static const size_t invalidFieldIndex = static_cast<size_t>(-1); 112 static const size_t invalidFieldIndex = static_cast<size_t>(-1);
113 113
114 // Datetime can be represent at most five fields, such as 114 // Datetime can be represent at most five fields, such as
115 // 1. year 115 // 1. year
116 // 2. month 116 // 2. month
117 // 3. day-of-month 117 // 3. day-of-month
118 // 4. hour 118 // 4. hour
119 // 5. minute 119 // 5. minute
(...skipping 28 matching lines...) Expand all
148 virtual AtomicString localeIdentifier() const OVERRIDE FINAL; 148 virtual AtomicString localeIdentifier() const OVERRIDE FINAL;
149 149
150 HeapVector<Member<DateTimeFieldElement>, maximumNumberOfFields> m_fields; 150 HeapVector<Member<DateTimeFieldElement>, maximumNumberOfFields> m_fields;
151 EditControlOwner* m_editControlOwner; 151 EditControlOwner* m_editControlOwner;
152 }; 152 };
153 153
154 } // namespace WebCore 154 } // namespace WebCore
155 155
156 #endif 156 #endif
157 #endif 157 #endif
OLDNEW
« no previous file with comments | « Source/core/html/MediaController.h ('k') | Source/core/html/shadow/DateTimeEditElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698