Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(349)

Unified Diff: webkit/support/platform_support_mac.mm

Issue 6303017: Fix input-speech related failures on DRT... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webkit/support/platform_support_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/platform_support_mac.mm
===================================================================
--- webkit/support/platform_support_mac.mm (revision 72559)
+++ webkit/support/platform_support_mac.mm (working copy)
@@ -216,28 +216,10 @@
}
return resize_corner_data;
}
-
- case IDR_SEARCH_CANCEL:
- case IDR_SEARCH_CANCEL_PRESSED:
- case IDR_SEARCH_MAGNIFIER:
- case IDR_SEARCH_MAGNIFIER_RESULTS:
- case IDR_MEDIA_PAUSE_BUTTON:
- case IDR_MEDIA_PLAY_BUTTON:
- case IDR_MEDIA_PLAY_BUTTON_DISABLED:
- case IDR_MEDIA_SOUND_FULL_BUTTON:
- case IDR_MEDIA_SOUND_NONE_BUTTON:
- case IDR_MEDIA_SOUND_DISABLED:
- case IDR_MEDIA_SLIDER_THUMB:
- case IDR_MEDIA_VOLUME_SLIDER_THUMB: {
- base::StringPiece res;
- g_resource_data_pack->GetStringPiece(resource_id, &res);
- return res;
}
-
- default:
- break;
- }
- return base::StringPiece();
+ base::StringPiece res;
+ g_resource_data_pack->GetStringPiece(resource_id, &res);
+ return res;
}
} // namespace webkit_glue
« no previous file with comments | « no previous file | webkit/support/platform_support_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698