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

Side by Side Diff: Source/WebCore/html/shadow/DateTimeSymbolicFieldElement.h

Issue 11420032: Merge 134239 - Refactoring: set read-only values on layout in DateTimeEditElement (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1312/
Patch Set: Created 8 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
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 22 matching lines...) Expand all
33 33
34 // DateTimeSymbolicFieldElement represents non-numeric field of data time 34 // DateTimeSymbolicFieldElement represents non-numeric field of data time
35 // format, such as: AM/PM, and month. 35 // format, such as: AM/PM, and month.
36 class DateTimeSymbolicFieldElement : public DateTimeFieldElement { 36 class DateTimeSymbolicFieldElement : public DateTimeFieldElement {
37 WTF_MAKE_NONCOPYABLE(DateTimeSymbolicFieldElement); 37 WTF_MAKE_NONCOPYABLE(DateTimeSymbolicFieldElement);
38 38
39 protected: 39 protected:
40 DateTimeSymbolicFieldElement(Document*, FieldOwner&, const Vector<String>&); 40 DateTimeSymbolicFieldElement(Document*, FieldOwner&, const Vector<String>&);
41 size_t symbolsSize() const { return m_symbols.size(); } 41 size_t symbolsSize() const { return m_symbols.size(); }
42 virtual bool hasValue() const OVERRIDE FINAL; 42 virtual bool hasValue() const OVERRIDE FINAL;
43 virtual void setEmptyValue(const DateComponents& dateForReadOnlyField, Event Behavior = DispatchNoEvent) OVERRIDE FINAL; 43 virtual void setEmptyValue(EventBehavior = DispatchNoEvent) OVERRIDE FINAL;
44 virtual void setValueAsInteger(int, EventBehavior = DispatchNoEvent) OVERRID E FINAL; 44 virtual void setValueAsInteger(int, EventBehavior = DispatchNoEvent) OVERRID E FINAL;
45 virtual int valueAsInteger() const OVERRIDE FINAL; 45 virtual int valueAsInteger() const OVERRIDE FINAL;
46 46
47 private: 47 private:
48 static const int invalidIndex = -1; 48 static const int invalidIndex = -1;
49 49
50 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE FINAL; 50 virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE FINAL;
51 String visibleEmptyValue() const; 51 String visibleEmptyValue() const;
52 52
53 // DateTimeFieldElement functions. 53 // DateTimeFieldElement functions.
(...skipping 10 matching lines...) Expand all
64 // We use AtomicString to share visible empty value among multiple 64 // We use AtomicString to share visible empty value among multiple
65 // DateTimeEditElements in the page. 65 // DateTimeEditElements in the page.
66 const AtomicString m_visibleEmptyValue; 66 const AtomicString m_visibleEmptyValue;
67 int m_selectedIndex; 67 int m_selectedIndex;
68 }; 68 };
69 69
70 } // namespace WebCore 70 } // namespace WebCore
71 71
72 #endif 72 #endif
73 #endif 73 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698