| OLD | NEW |
| 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 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef PagePopupController_h | 31 #ifndef PagePopupController_h |
| 32 #define PagePopupController_h | 32 #define PagePopupController_h |
| 33 | 33 |
| 34 #if ENABLE(PAGE_POPUP) | |
| 35 | |
| 36 #include <wtf/Forward.h> | 34 #include <wtf/Forward.h> |
| 37 #include <wtf/RefCounted.h> | 35 #include <wtf/RefCounted.h> |
| 38 | 36 |
| 39 namespace WebCore { | 37 namespace WebCore { |
| 40 | 38 |
| 41 class PagePopupClient; | 39 class PagePopupClient; |
| 42 | 40 |
| 43 class PagePopupController : public RefCounted<PagePopupController> { | 41 class PagePopupController : public RefCounted<PagePopupController> { |
| 44 public: | 42 public: |
| 45 static PassRefPtr<PagePopupController> create(PagePopupClient*); | 43 static PassRefPtr<PagePopupController> create(PagePopupClient*); |
| 46 void setValueAndClosePopup(int numValue, const String& stringValue); | 44 void setValueAndClosePopup(int numValue, const String& stringValue); |
| 47 void setValue(const String&); | 45 void setValue(const String&); |
| 48 void closePopup(); | 46 void closePopup(); |
| 49 String localizeNumberString(const String&); | 47 String localizeNumberString(const String&); |
| 50 #if ENABLE(CALENDAR_PICKER) | 48 #if ENABLE(CALENDAR_PICKER) |
| 51 String formatMonth(int year, int zeroBaseMonth); | 49 String formatMonth(int year, int zeroBaseMonth); |
| 52 String formatShortMonth(int year, int zeroBaseMonth); | 50 String formatShortMonth(int year, int zeroBaseMonth); |
| 53 #endif | 51 #endif |
| 54 void clearPagePopupClient(); | 52 void clearPagePopupClient(); |
| 55 void histogramEnumeration(const String& name, int sample, int boundaryValue)
; | 53 void histogramEnumeration(const String& name, int sample, int boundaryValue)
; |
| 56 | 54 |
| 57 private: | 55 private: |
| 58 explicit PagePopupController(PagePopupClient*); | 56 explicit PagePopupController(PagePopupClient*); |
| 59 | 57 |
| 60 PagePopupClient* m_popupClient; | 58 PagePopupClient* m_popupClient; |
| 61 }; | 59 }; |
| 62 | 60 |
| 63 } | 61 } |
| 64 #endif | 62 #endif |
| 65 #endif | |
| OLD | NEW |