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

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

Issue 11419080: Merge 132895 (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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 virtual void didEndChooser() OVERRIDE; 56 virtual void didEndChooser() OVERRIDE;
57 57
58 private: 58 private:
59 PickerIndicatorElement(Document*); 59 PickerIndicatorElement(Document*);
60 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*) OVERRIDE; 60 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*) OVERRIDE;
61 virtual void defaultEventHandler(Event*) OVERRIDE; 61 virtual void defaultEventHandler(Event*) OVERRIDE;
62 virtual void detach() OVERRIDE; 62 virtual void detach() OVERRIDE;
63 63
64 HTMLInputElement* hostInput(); 64 HTMLInputElement* hostInput();
65 65
66 OwnPtr<DateTimeChooser> m_chooser; 66 RefPtr<DateTimeChooser> m_chooser;
67 }; 67 };
68 68
69 } 69 }
70 #endif 70 #endif
71 #endif 71 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698