| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #define HTMLInputElement_h | 26 #define HTMLInputElement_h |
| 27 | 27 |
| 28 #include "base/gtest_prod_util.h" | 28 #include "base/gtest_prod_util.h" |
| 29 #include "core/CoreExport.h" | 29 #include "core/CoreExport.h" |
| 30 #include "core/html/TextControlElement.h" | 30 #include "core/html/TextControlElement.h" |
| 31 #include "core/html/forms/StepRange.h" | 31 #include "core/html/forms/StepRange.h" |
| 32 #include "platform/FileChooser.h" | 32 #include "platform/FileChooser.h" |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 | 35 |
| 36 class AXObjectImpl; | 36 class AXObject; |
| 37 class DragData; | 37 class DragData; |
| 38 class ExceptionState; | 38 class ExceptionState; |
| 39 class FileList; | 39 class FileList; |
| 40 class HTMLDataListElement; | 40 class HTMLDataListElement; |
| 41 class HTMLImageLoader; | 41 class HTMLImageLoader; |
| 42 class InputType; | 42 class InputType; |
| 43 class InputTypeView; | 43 class InputTypeView; |
| 44 class KURL; | 44 class KURL; |
| 45 class ListAttributeTargetObserver; | 45 class ListAttributeTargetObserver; |
| 46 class RadioButtonGroupScope; | 46 class RadioButtonGroupScope; |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 | 275 |
| 276 HTMLImageLoader* ImageLoader() const { return image_loader_.Get(); } | 276 HTMLImageLoader* ImageLoader() const { return image_loader_.Get(); } |
| 277 HTMLImageLoader& EnsureImageLoader(); | 277 HTMLImageLoader& EnsureImageLoader(); |
| 278 | 278 |
| 279 bool SetupDateTimeChooserParameters(DateTimeChooserParameters&); | 279 bool SetupDateTimeChooserParameters(DateTimeChooserParameters&); |
| 280 | 280 |
| 281 bool SupportsInputModeAttribute() const; | 281 bool SupportsInputModeAttribute() const; |
| 282 | 282 |
| 283 void SetShouldRevealPassword(bool value); | 283 void SetShouldRevealPassword(bool value); |
| 284 bool ShouldRevealPassword() const { return should_reveal_password_; } | 284 bool ShouldRevealPassword() const { return should_reveal_password_; } |
| 285 AXObjectImpl* PopupRootAXObject(); | 285 AXObject* PopupRootAXObject(); |
| 286 void DidNotifySubtreeInsertionsToDocument() override; | 286 void DidNotifySubtreeInsertionsToDocument() override; |
| 287 | 287 |
| 288 virtual void EnsureFallbackContent(); | 288 virtual void EnsureFallbackContent(); |
| 289 virtual void EnsurePrimaryContent(); | 289 virtual void EnsurePrimaryContent(); |
| 290 bool HasFallbackContent() const; | 290 bool HasFallbackContent() const; |
| 291 | 291 |
| 292 bool IsPlaceholderVisible() const override { return is_placeholder_visible_; } | 292 bool IsPlaceholderVisible() const override { return is_placeholder_visible_; } |
| 293 void SetPlaceholderVisibility(bool) override; | 293 void SetPlaceholderVisibility(bool) override; |
| 294 | 294 |
| 295 unsigned SizeOfRadioGroup() const; | 295 unsigned SizeOfRadioGroup() const; |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 // element lives on. | 431 // element lives on. |
| 432 Member<HTMLImageLoader> image_loader_; | 432 Member<HTMLImageLoader> image_loader_; |
| 433 Member<ListAttributeTargetObserver> list_attribute_target_observer_; | 433 Member<ListAttributeTargetObserver> list_attribute_target_observer_; |
| 434 | 434 |
| 435 FRIEND_TEST_ALL_PREFIXES(HTMLInputElementTest, RadioKeyDownDCHECKFailure); | 435 FRIEND_TEST_ALL_PREFIXES(HTMLInputElementTest, RadioKeyDownDCHECKFailure); |
| 436 }; | 436 }; |
| 437 | 437 |
| 438 } // namespace blink | 438 } // namespace blink |
| 439 | 439 |
| 440 #endif // HTMLInputElement_h | 440 #endif // HTMLInputElement_h |
| OLD | NEW |