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

Side by Side Diff: webkit/glue/webframe_impl.h

Issue 13731: [chromium-reviews] Add "Enable spell check for this field" menu option in sub context menu for c... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Computer, 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 virtual void StopFinding(bool clear_selection); 127 virtual void StopFinding(bool clear_selection);
128 virtual void ScopeStringMatches(FindInPageRequest request, bool reset); 128 virtual void ScopeStringMatches(FindInPageRequest request, bool reset);
129 virtual void CancelPendingScopingEffort(); 129 virtual void CancelPendingScopingEffort();
130 virtual void ResetMatchCount(); 130 virtual void ResetMatchCount();
131 virtual bool Visible(); 131 virtual bool Visible();
132 virtual void SelectAll(); 132 virtual void SelectAll();
133 virtual void Copy(); 133 virtual void Copy();
134 virtual void Cut(); 134 virtual void Cut();
135 virtual void Paste(); 135 virtual void Paste();
136 virtual void Replace(const std::wstring& text); 136 virtual void Replace(const std::wstring& text);
137 virtual void ToggleSpellCheck();
138 virtual bool SpellCheckEnabled();
137 virtual void Delete(); 139 virtual void Delete();
138 virtual void Undo(); 140 virtual void Undo();
139 virtual void Redo(); 141 virtual void Redo();
140 virtual void ClearSelection(); 142 virtual void ClearSelection();
141 virtual std::string GetSelection(bool as_html); 143 virtual std::string GetSelection(bool as_html);
142 144
143 virtual void SetInViewSourceMode(bool enable); 145 virtual void SetInViewSourceMode(bool enable);
144 146
145 virtual bool GetInViewSourceMode() const; 147 virtual bool GetInViewSourceMode() const;
146 148
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 // The input fields that are interested in edit events and their associated 428 // The input fields that are interested in edit events and their associated
427 // listeners. 429 // listeners.
428 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, 430 typedef HashMap<RefPtr<WebCore::HTMLInputElement>,
429 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; 431 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap;
430 PasswordListenerMap password_listeners_; 432 PasswordListenerMap password_listeners_;
431 433
432 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); 434 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl);
433 }; 435 };
434 436
435 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ 437 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698