Index: content/browser/renderer_host/render_widget_host_view_mac_editcommand_helper.mm |
diff --git a/content/browser/renderer_host/render_widget_host_view_mac_editcommand_helper.mm b/content/browser/renderer_host/render_widget_host_view_mac_editcommand_helper.mm |
index 25dbcfeedcef4f037d8ef76defc62a7fe3a0a85d..b6923eef6c45422ff478e0d694837f73285f2094 100644 |
--- a/content/browser/renderer_host/render_widget_host_view_mac_editcommand_helper.mm |
+++ b/content/browser/renderer_host/render_widget_host_view_mac_editcommand_helper.mm |
@@ -19,7 +19,7 @@ namespace { |
// |
// This needs to be kept in Sync with WEB_COMMAND list in the WebKit tree at: |
// WebKit/mac/WebView/WebHTMLView.mm . |
-const char* kEditCommands[] = { |
+const char* const kEditCommands[] = { |
"alignCenter", |
"alignJustified", |
"alignLeft", |
@@ -107,7 +107,8 @@ const char* kEditCommands[] = { |
"underline", |
"unscript", |
"yank", |
- "yankAndSelect"}; |
+ "yankAndSelect" |
+}; |
// This function is installed via the objc runtime as the implementation of all |