| # Copyright 2016 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| # Fragments loaded by name via Fragment.instantiate(Context,String) |
| # Not all fragments in this package are PreferenceFragments. E.g. HomepageEditor |
| # is a normal Fragment. |
| -keep public class org.chromium.chrome.browser.** extends android.app.Fragment { |
| public <init>(); |
| } |
| |
| # These classes aren't themselves referenced, but __ProcessService[0,1,2...] are |
| # referenced, and we look up these services by appending a number onto the name |
| # of the base class. Thus, we need to keep the base class name around so that |
| # the child classes can be looked up. |
| -keep class org.chromium.content.app.SandboxedProcessService { |
| public <init>(); |
| } |
| -keep class org.chromium.content.app.PrivilegedProcessService { |
| public <init>(); |
| } |
| |
| # SearchView is used in website_preferences_menu.xml and is constructed by |
| # Android using reflection. |
| -keep class android.support.v7.widget.SearchView { |
| public <init>(...); |
| } |
| |
| # This class member is referenced in BottomSheetBottomNav as a temporary |
| # measure until the support library contains a solution for disabling shifting |
| # mode. TODO(twellington): remove once support library has a fix and is rolled. |
| -keepclassmembers class android.support.design.internal.BottomNavigationMenuView { |
| boolean mShiftingMode; |
| } |
| |
| # Trichrome builds don't include a native library list in the main APK; it's |
| # picked up from the library APK at runtime. |
| -dontwarn org.chromium.base.library_loader.NativeLibraries |