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

Side by Side Diff: Source/WebCore/testing/Internals.h

Issue 7796022: Merge 94586 - REGRESSION(r94274): FormManagerTest.PreviewForm and FillFormNonEmptyField fail on c... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 3 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/WebCore/html/HTMLInputElement.cpp ('k') | Source/WebCore/testing/Internals.cpp » ('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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 unsigned markerCountForNode(Node*, ExceptionCode&); 76 unsigned markerCountForNode(Node*, ExceptionCode&);
77 PassRefPtr<Range> markerRangeForNode(Node*, unsigned, ExceptionCode&); 77 PassRefPtr<Range> markerRangeForNode(Node*, unsigned, ExceptionCode&);
78 78
79 void setForceCompositingMode(Document*, bool enabled, ExceptionCode&); 79 void setForceCompositingMode(Document*, bool enabled, ExceptionCode&);
80 80
81 void setPasswordEchoEnabled(Document*, bool enabled, ExceptionCode&); 81 void setPasswordEchoEnabled(Document*, bool enabled, ExceptionCode&);
82 void setPasswordEchoDurationInSeconds(Document*, double durationInSeconds, E xceptionCode&); 82 void setPasswordEchoDurationInSeconds(Document*, double durationInSeconds, E xceptionCode&);
83 83
84 bool wasLastChangeUserEdit(Element* textField, ExceptionCode&); 84 bool wasLastChangeUserEdit(Element* textField, ExceptionCode&);
85 String suggestedValue(Element* inputElement, ExceptionCode&);
86 void setSuggestedValue(Element* inputElement, const String&, ExceptionCode&) ;
85 87
86 static const char* internalsId; 88 static const char* internalsId;
87 89
88 private: 90 private:
89 Internals(); 91 Internals();
90 92
91 double passwordEchoDurationInSecondsBackup; 93 double passwordEchoDurationInSecondsBackup;
92 bool passwordEchoEnabledBackup : 1; 94 bool passwordEchoEnabledBackup : 1;
93 bool passwordEchoDurationInSecondsBackedUp : 1; 95 bool passwordEchoDurationInSecondsBackedUp : 1;
94 bool passwordEchoEnabledBackedUp : 1; 96 bool passwordEchoEnabledBackedUp : 1;
95 }; 97 };
96 98
97 } // namespace WebCore 99 } // namespace WebCore
98 100
99 #endif 101 #endif
OLDNEW
« no previous file with comments | « Source/WebCore/html/HTMLInputElement.cpp ('k') | Source/WebCore/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698