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

Side by Side Diff: Application/src/main/AndroidManifest.xml

Issue 2961203002: Support library changes to allow a callback notifying the selection of default items for Browser Ac… (Closed)
Patch Set: Update based on Yusuf's comments. Created 3 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | Application/src/main/java/org/chromium/customtabsclient/BrowserActionsReceiver.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 Google Inc. All Rights Reserved. 2 <!-- Copyright 2015 Google Inc. All Rights Reserved.
3 3
4 Licensed under the Apache License, Version 2.0 (the "License"); 4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License. 5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at 6 You may obtain a copy of the License at
7 7
8 http://www.apache.org/licenses/LICENSE-2.0 8 http://www.apache.org/licenses/LICENSE-2.0
9 9
10 Unless required by applicable law or agreed to in writing, software 10 Unless required by applicable law or agreed to in writing, software
(...skipping 19 matching lines...) Expand all
30 android:name="org.chromium.customtabsclient.MainActivity" 30 android:name="org.chromium.customtabsclient.MainActivity"
31 android:label="@string/app_name" > 31 android:label="@string/app_name" >
32 <intent-filter> 32 <intent-filter>
33 <action android:name="android.intent.action.MAIN" /> 33 <action android:name="android.intent.action.MAIN" />
34 <category android:name="android.intent.category.LAUNCHER" /> 34 <category android:name="android.intent.category.LAUNCHER" />
35 </intent-filter> 35 </intent-filter>
36 </activity> 36 </activity>
37 <service 37 <service
38 android:name=".shared.KeepAliveService" 38 android:name=".shared.KeepAliveService"
39 android:exported="true"/> 39 android:exported="true"/>
40 <receiver android:name="org.chromium.customtabsclient.BrowserActionsRece iver"/>
40 <receiver android:name=".BottomBarManager"/> 41 <receiver android:name=".BottomBarManager"/>
41 </application> 42 </application>
42 43
43 </manifest> 44 </manifest>
OLDNEW
« no previous file with comments | « no previous file | Application/src/main/java/org/chromium/customtabsclient/BrowserActionsReceiver.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698