| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WEBKIT_GLUE_CONTEXT_NODE_TYPES_H__ | 5 #ifndef WEBKIT_GLUE_CONTEXT_NODE_TYPES_H__ |
| 6 #define WEBKIT_GLUE_CONTEXT_NODE_TYPES_H__ | 6 #define WEBKIT_GLUE_CONTEXT_NODE_TYPES_H__ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 | 104 |
| 105 // If editable, flag for whether spell check is enabled or not. | 105 // If editable, flag for whether spell check is enabled or not. |
| 106 bool spellcheck_enabled; | 106 bool spellcheck_enabled; |
| 107 | 107 |
| 108 // These flags indicate to the browser whether the renderer believes it is | 108 // These flags indicate to the browser whether the renderer believes it is |
| 109 // able to perform the corresponding action. | 109 // able to perform the corresponding action. |
| 110 int edit_flags; | 110 int edit_flags; |
| 111 | 111 |
| 112 // The security info for the resource we are showing the menu on. | 112 // The security info for the resource we are showing the menu on. |
| 113 std::string security_info; | 113 std::string security_info; |
| 114 |
| 115 // The character encoding of the frame on which the menu is invoked. |
| 116 std::string frame_charset; |
| 114 }; | 117 }; |
| 115 | 118 |
| 116 #endif // WEBKIT_GLUE_CONTEXT_NODE_TYPES_H__ | 119 #endif // WEBKIT_GLUE_CONTEXT_NODE_TYPES_H__ |
| OLD | NEW |