Move app ops classes to their own package

Bug: 68426851
Test: robotests
Change-Id: I076b7adf59d4bf66792eb0aebaa3dc305d6d0c4b
This commit is contained in:
Fan Zhang
2017-10-28 14:11:44 -07:00
parent 5214fae4be
commit f68e6ec2ae
5 changed files with 33 additions and 33 deletions

View File

@@ -448,7 +448,7 @@
<Preference <Preference
android:key="background_check" android:key="background_check"
android:fragment="com.android.settings.applications.BackgroundCheckSummary" android:fragment="com.android.settings.applications.appops.BackgroundCheckSummary"
android:title="@string/background_check_pref" /> android:title="@string/background_check_pref" />

View File

@@ -1,20 +1,20 @@
/** /*
* Copyright (C) 2013 The Android Open Source Project * Copyright (C) 2013 The Android Open Source Project
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may not * Licensed under the Apache License, Version 2.0 (the "License");
* use this file except in compliance with the License. You may obtain a copy * you may not use this file except in compliance with the License.
* of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * distributed under the License is distributed on an "AS IS" BASIS,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* License for the specific language governing permissions and limitations * See the License for the specific language governing permissions and
* under the License. * limitations under the License.
*/ */
package com.android.settings.applications; package com.android.settings.applications.appops;
import android.app.AppOpsManager; import android.app.AppOpsManager;
import android.app.ListFragment; import android.app.ListFragment;
@@ -39,7 +39,7 @@ import android.widget.Switch;
import android.widget.TextView; import android.widget.TextView;
import com.android.settings.R; import com.android.settings.R;
import com.android.settings.applications.AppOpsState.AppOpEntry; import com.android.settings.applications.appops.AppOpsState.AppOpEntry;
import java.util.List; import java.util.List;

View File

@@ -1,20 +1,20 @@
/** /*
* Copyright (C) 2013 The Android Open Source Project * Copyright (C) 2013 The Android Open Source Project
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may not * Licensed under the Apache License, Version 2.0 (the "License");
* use this file except in compliance with the License. You may obtain a copy * you may not use this file except in compliance with the License.
* of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * distributed under the License is distributed on an "AS IS" BASIS,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* License for the specific language governing permissions and limitations * See the License for the specific language governing permissions and
* under the License. * limitations under the License.
*/ */
package com.android.settings.applications; package com.android.settings.applications.appops;
import android.app.AppOpsManager; import android.app.AppOpsManager;
import android.content.Context; import android.content.Context;

View File

@@ -1,20 +1,20 @@
/** /*
* Copyright (C) 2015 The Android Open Source Project * Copyright (C) 2015 The Android Open Source Project
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may not * Licensed under the Apache License, Version 2.0 (the "License");
* use this file except in compliance with the License. You may obtain a copy * you may not use this file except in compliance with the License.
* of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * distributed under the License is distributed on an "AS IS" BASIS,
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* License for the specific language governing permissions and limitations * See the License for the specific language governing permissions and
* under the License. * limitations under the License.
*/ */
package com.android.settings.applications; package com.android.settings.applications.appops;
import android.annotation.Nullable; import android.annotation.Nullable;
import android.app.FragmentTransaction; import android.app.FragmentTransaction;

View File

@@ -1,5 +1,5 @@
com.android.settings.deletionhelper.ActivationWarningFragment com.android.settings.deletionhelper.ActivationWarningFragment
com.android.settings.applications.AppOpsCategory com.android.settings.applications.appops.AppOpsCategory
com.android.settings.inputmethod.UserDictionaryLocalePicker com.android.settings.inputmethod.UserDictionaryLocalePicker
com.android.settings.CustomListPreference$CustomListPreferenceDialogFragment com.android.settings.CustomListPreference$CustomListPreferenceDialogFragment
com.android.settings.password.ChooseLockPassword$SaveAndFinishWorker com.android.settings.password.ChooseLockPassword$SaveAndFinishWorker