| Index: ui/events/cocoa/events_mac.mm
|
| diff --git a/ui/events/cocoa/events_mac.mm b/ui/events/cocoa/events_mac.mm
|
| index e68c755984b066cdbff126e59e64c5050e74f052..7d540e710012da37c57e0c3aa3d1edd2147cdc81 100644
|
| --- a/ui/events/cocoa/events_mac.mm
|
| +++ b/ui/events/cocoa/events_mac.mm
|
| @@ -233,7 +233,7 @@ uint16 TextFromNative(const base::NativeEvent& native_event) {
|
| if ([native_event type] != NSFlagsChanged)
|
| text = [native_event characters];
|
|
|
| - // These exceptions are based on WebInputEventFactoryMac.mm:
|
| + // These exceptions are based on web_input_event_builders_mac.mm:
|
| uint32 windows_keycode = WindowsKeycodeFromNative(native_event);
|
| if (windows_keycode == '\r')
|
| text = @"\r";
|
| @@ -252,7 +252,7 @@ uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) {
|
| if ([native_event type] != NSFlagsChanged)
|
| text = [native_event charactersIgnoringModifiers];
|
|
|
| - // These exceptions are based on WebInputEventFactoryMac.mm:
|
| + // These exceptions are based on web_input_event_builders_mac.mm:
|
| uint32 windows_keycode = WindowsKeycodeFromNative(native_event);
|
| if (windows_keycode == '\r')
|
| text = @"\r";
|
|
|