OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 package org.chromium.chrome.browser.customtabs; | 5 package org.chromium.chrome.browser.customtabs; |
6 | 6 |
7 import android.content.Intent; | 7 import android.content.Intent; |
8 import android.content.res.Configuration; | 8 import android.content.res.Configuration; |
9 import android.net.Uri; | 9 import android.net.Uri; |
10 import android.text.TextUtils; | 10 import android.text.TextUtils; |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 | 362 |
363 /** | 363 /** |
364 * @return The {@link CustomTabIntentDataProvider} for this {@link CustomTab
Activity}. For test | 364 * @return The {@link CustomTabIntentDataProvider} for this {@link CustomTab
Activity}. For test |
365 * purposes only. | 365 * purposes only. |
366 */ | 366 */ |
367 @VisibleForTesting | 367 @VisibleForTesting |
368 CustomTabIntentDataProvider getIntentDataProvider() { | 368 CustomTabIntentDataProvider getIntentDataProvider() { |
369 return mIntentDataProvider; | 369 return mIntentDataProvider; |
370 } | 370 } |
371 } | 371 } |
OLD | NEW |