Add coarse location permission to GoogleSearch

FOR DONUT!

Without this, partner builds that run GoogleSearch in a process
that does not have android.permission.ACCESS_COARSE_LOCATION
will crash when trying to use Google search from the search dialog
or the browser address bar.

Fixes http://b/issue?id=2132064

Change-Id: I5782978f71f38b76f3439246cb254175b33c7530
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index bffa88b..d5d8281 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -23,6 +23,7 @@
 
     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
     <uses-permission android:name="android.permission.INTERNET" />
+    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
 
     <application
         android:process="android.process.acore"