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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLInputElement.h

Issue 2887613002: Revert of Rename AXObject to AXObjectImpl in modules/ and web/ (patchset #9 id:160001 of https://co… (Closed)
Patch Set: Created 3 years, 7 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
OLDNEW
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
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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 272
273 HTMLImageLoader* ImageLoader() const { return image_loader_.Get(); } 273 HTMLImageLoader* ImageLoader() const { return image_loader_.Get(); }
274 HTMLImageLoader& EnsureImageLoader(); 274 HTMLImageLoader& EnsureImageLoader();
275 275
276 bool SetupDateTimeChooserParameters(DateTimeChooserParameters&); 276 bool SetupDateTimeChooserParameters(DateTimeChooserParameters&);
277 277
278 bool SupportsInputModeAttribute() const; 278 bool SupportsInputModeAttribute() const;
279 279
280 void SetShouldRevealPassword(bool value); 280 void SetShouldRevealPassword(bool value);
281 bool ShouldRevealPassword() const { return should_reveal_password_; } 281 bool ShouldRevealPassword() const { return should_reveal_password_; }
282 AXObjectImpl* PopupRootAXObject(); 282 AXObject* PopupRootAXObject();
283 void DidNotifySubtreeInsertionsToDocument() override; 283 void DidNotifySubtreeInsertionsToDocument() override;
284 284
285 virtual void EnsureFallbackContent(); 285 virtual void EnsureFallbackContent();
286 virtual void EnsurePrimaryContent(); 286 virtual void EnsurePrimaryContent();
287 bool HasFallbackContent() const; 287 bool HasFallbackContent() const;
288 288
289 bool IsPlaceholderVisible() const override { return is_placeholder_visible_; } 289 bool IsPlaceholderVisible() const override { return is_placeholder_visible_; }
290 void SetPlaceholderVisibility(bool) override; 290 void SetPlaceholderVisibility(bool) override;
291 291
292 unsigned SizeOfRadioGroup() const; 292 unsigned SizeOfRadioGroup() const;
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 // element lives on. 427 // element lives on.
428 Member<HTMLImageLoader> image_loader_; 428 Member<HTMLImageLoader> image_loader_;
429 Member<ListAttributeTargetObserver> list_attribute_target_observer_; 429 Member<ListAttributeTargetObserver> list_attribute_target_observer_;
430 430
431 FRIEND_TEST_ALL_PREFIXES(HTMLInputElementTest, RadioKeyDownDCHECKFailure); 431 FRIEND_TEST_ALL_PREFIXES(HTMLInputElementTest, RadioKeyDownDCHECKFailure);
432 }; 432 };
433 433
434 } // namespace blink 434 } // namespace blink
435 435
436 #endif // HTMLInputElement_h 436 #endif // HTMLInputElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.h ('k') | third_party/WebKit/Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698