I would like this for two reasons:
1. consistency. It would be jarring for me to come across a non-range based for loop in code that uses range-based for everywhere else. Here's some examples where we use both forward and reverse iteration near each other:
ash/display/display_manager.cc:929-946
ash/wm/workspace/workspace_window_resizer.cc:756-770
athena/wm/window_overview_mode:window_overview_mode.cc:363-380 (this is particular interesting because it is actually iterating over the same thing in different directions)
chrome/browser/apps/app_shim/extension_app_shim_handler_mac.cc:56-71
2. it makes it much more obvious that you are actually iterating in reverse. Take a look at the workspace_window_resizer.cc example. Currently the only thing that really calls out that that iteration is done in reverse is the const_reverse_iterator type name (I don't think the 'r' prefix on begin/end is obvious). Now imagine that one using 'auto'.