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

Unified Diff: chrome/android/java_staging/src/org/chromium/chrome/browser/customtabs/CustomTabsConnectionService.java

Issue 1172753002: Rename CustomTabs service related classes and interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
Index: chrome/android/java_staging/src/org/chromium/chrome/browser/customtabs/CustomTabsConnectionService.java
diff --git a/chrome/android/java_staging/src/org/chromium/chrome/browser/customtabs/ChromeConnectionService.java b/chrome/android/java_staging/src/org/chromium/chrome/browser/customtabs/CustomTabsConnectionService.java
similarity index 73%
rename from chrome/android/java_staging/src/org/chromium/chrome/browser/customtabs/ChromeConnectionService.java
rename to chrome/android/java_staging/src/org/chromium/chrome/browser/customtabs/CustomTabsConnectionService.java
index 59bf8b2af7590efb854857d0e8bd532984cdab5e..12ed7eea9b5a9129e299ac3122e685f50439e902 100644
--- a/chrome/android/java_staging/src/org/chromium/chrome/browser/customtabs/ChromeConnectionService.java
+++ b/chrome/android/java_staging/src/org/chromium/chrome/browser/customtabs/CustomTabsConnectionService.java
@@ -9,9 +9,9 @@ import android.content.Intent;
import android.os.IBinder;
/**
- * Chrome browser connection service, used by the embedded Chrome activities.
+ * Custom tabs connection service, used by the embedded Chrome activities.
*/
-public class ChromeConnectionService extends Service {
+public class CustomTabsConnectionService extends Service {
@Override
public void onCreate() {
super.onCreate();
@@ -19,7 +19,7 @@ public class ChromeConnectionService extends Service {
@Override
public IBinder onBind(Intent intent) {
- return (IBinder) ChromeBrowserConnection.getInstance(getApplication());
+ return (IBinder) CustomTabsConnection.getInstance(getApplication());
}
@Override

Powered by Google App Engine
This is Rietveld 408576698