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

Side by Side Diff: Source/web/DateTimeChooserImpl.h

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months 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 | « Source/web/DatabaseClientImpl.h ('k') | Source/web/DragClientImpl.h » ('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 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 23 matching lines...) Expand all
34 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 34 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
35 #include "core/html/forms/DateTimeChooser.h" 35 #include "core/html/forms/DateTimeChooser.h"
36 #include "core/page/PagePopupClient.h" 36 #include "core/page/PagePopupClient.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 class ChromeClientImpl; 40 class ChromeClientImpl;
41 class DateTimeChooserClient; 41 class DateTimeChooserClient;
42 class PagePopup; 42 class PagePopup;
43 43
44 class DateTimeChooserImpl FINAL : public DateTimeChooser, public PagePopupClient { 44 class DateTimeChooserImpl final : public DateTimeChooser, public PagePopupClient {
45 public: 45 public:
46 static PassRefPtr<DateTimeChooserImpl> create(ChromeClientImpl*, DateTimeCho oserClient*, const DateTimeChooserParameters&); 46 static PassRefPtr<DateTimeChooserImpl> create(ChromeClientImpl*, DateTimeCho oserClient*, const DateTimeChooserParameters&);
47 virtual ~DateTimeChooserImpl(); 47 virtual ~DateTimeChooserImpl();
48 48
49 // DateTimeChooser functions: 49 // DateTimeChooser functions:
50 virtual void endChooser() OVERRIDE; 50 virtual void endChooser() override;
51 virtual AXObject* rootAXObject() OVERRIDE; 51 virtual AXObject* rootAXObject() override;
52 52
53 private: 53 private:
54 DateTimeChooserImpl(ChromeClientImpl*, DateTimeChooserClient*, const DateTim eChooserParameters&); 54 DateTimeChooserImpl(ChromeClientImpl*, DateTimeChooserClient*, const DateTim eChooserParameters&);
55 // PagePopupClient functions: 55 // PagePopupClient functions:
56 virtual IntSize contentSize() OVERRIDE; 56 virtual IntSize contentSize() override;
57 virtual void writeDocument(SharedBuffer*) OVERRIDE; 57 virtual void writeDocument(SharedBuffer*) override;
58 virtual Locale& locale() OVERRIDE; 58 virtual Locale& locale() override;
59 virtual void setValueAndClosePopup(int, const String&) OVERRIDE; 59 virtual void setValueAndClosePopup(int, const String&) override;
60 virtual void setValue(const String&) OVERRIDE; 60 virtual void setValue(const String&) override;
61 virtual void closePopup() OVERRIDE; 61 virtual void closePopup() override;
62 virtual Element& ownerElement() OVERRIDE; 62 virtual Element& ownerElement() override;
63 virtual void didClosePopup() OVERRIDE; 63 virtual void didClosePopup() override;
64 64
65 ChromeClientImpl* m_chromeClient; 65 ChromeClientImpl* m_chromeClient;
66 DateTimeChooserClient* m_client; 66 DateTimeChooserClient* m_client;
67 PagePopup* m_popup; 67 PagePopup* m_popup;
68 DateTimeChooserParameters m_parameters; 68 DateTimeChooserParameters m_parameters;
69 OwnPtr<Locale> m_locale; 69 OwnPtr<Locale> m_locale;
70 }; 70 };
71 71
72 } 72 }
73 73
74 #endif // ENABLE(INPUT_MULTIPLE_FIELDS_UI) 74 #endif // ENABLE(INPUT_MULTIPLE_FIELDS_UI)
75 75
76 #endif // DateTimeChooserImpl_h 76 #endif // DateTimeChooserImpl_h
OLDNEW
« no previous file with comments | « Source/web/DatabaseClientImpl.h ('k') | Source/web/DragClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698