| Index: content/browser/renderer_host/gtk_key_bindings_handler.h
|
| ===================================================================
|
| --- content/browser/renderer_host/gtk_key_bindings_handler.h (revision 164665)
|
| +++ content/browser/renderer_host/gtk_key_bindings_handler.h (working copy)
|
| @@ -15,7 +15,6 @@
|
|
|
| namespace content {
|
| struct NativeWebKeyboardEvent;
|
| -}
|
|
|
| // This class is a convenience class for handling editor key bindings defined
|
| // in gtk keyboard theme.
|
| @@ -44,8 +43,8 @@
|
| // Matches a key event against predefined gtk key bindings, false will be
|
| // returned if the key event doesn't correspond to a predefined key binding.
|
| // Edit commands matched with |wke| will be stored in |edit_commands|.
|
| - bool Match(const content::NativeWebKeyboardEvent& wke,
|
| - content::EditCommands* edit_commands);
|
| + bool Match(const NativeWebKeyboardEvent& wke,
|
| + EditCommands* edit_commands);
|
|
|
| private:
|
| // Object structure of Handler class, which is derived from GtkTextView.
|
| @@ -125,7 +124,9 @@
|
| ui::OwnedWidgetGtk handler_;
|
|
|
| // Buffer to store the match results.
|
| - content::EditCommands edit_commands_;
|
| + EditCommands edit_commands_;
|
| };
|
|
|
| +} // namespace content
|
| +
|
| #endif // CONTENT_BROWSER_RENDERER_HOST_GTK_KEY_BINDINGS_HANDLER_H_
|
|
|