| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 114 |
| 115 // Extra attributes describing media elements. | 115 // Extra attributes describing media elements. |
| 116 int mediaFlags; | 116 int mediaFlags; |
| 117 | 117 |
| 118 // The text of the link that is in the context. | 118 // The text of the link that is in the context. |
| 119 WebString linkText; | 119 WebString linkText; |
| 120 | 120 |
| 121 // The raw text of the selection in context. | 121 // The raw text of the selection in context. |
| 122 WebString selectedText; | 122 WebString selectedText; |
| 123 | 123 |
| 124 // Title attribute or alt attribute (if title is not available) of the selecti
on in context. | 124 // Title attribute or alt attribute (if title is not available) of the |
| 125 // selection in context. |
| 125 WebString titleText; | 126 WebString titleText; |
| 126 | 127 |
| 127 // Whether spell checking is enabled. | 128 // Whether spell checking is enabled. |
| 128 bool isSpellCheckingEnabled; | 129 bool isSpellCheckingEnabled; |
| 129 | 130 |
| 130 // Suggested filename for saving file. | 131 // Suggested filename for saving file. |
| 131 WebString suggestedFilename; | 132 WebString suggestedFilename; |
| 132 | 133 |
| 133 // The editable (possibily) misspelled word. | 134 // The editable (possibily) misspelled word. |
| 134 WebString misspelledWord; | 135 WebString misspelledWord; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 isEditable(false), | 200 isEditable(false), |
| 200 writingDirectionDefault(CheckableMenuItemDisabled), | 201 writingDirectionDefault(CheckableMenuItemDisabled), |
| 201 writingDirectionLeftToRight(CheckableMenuItemEnabled), | 202 writingDirectionLeftToRight(CheckableMenuItemEnabled), |
| 202 writingDirectionRightToLeft(CheckableMenuItemEnabled), | 203 writingDirectionRightToLeft(CheckableMenuItemEnabled), |
| 203 editFlags(0) {} | 204 editFlags(0) {} |
| 204 }; | 205 }; |
| 205 | 206 |
| 206 } // namespace blink | 207 } // namespace blink |
| 207 | 208 |
| 208 #endif | 209 #endif |
| OLD | NEW |