• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2013 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (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
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.shell;
18 
19 import android.content.Context;
20 import android.content.SharedPreferences;
21 
22 /**
23  * Preferences related to bug reports.
24  */
25 final class BugreportPrefs {
26 
getWarningState(Context context, int def)27     static int getWarningState(Context context, int def) {
28         String prefsBugreport = context.getResources().getString(
29                 com.android.internal.R.string.prefs_bugreport);
30         String keyWarningState = context.getResources().getString(
31                 com.android.internal.R.string.key_warning_state);
32         final SharedPreferences prefs = context.getSharedPreferences(prefsBugreport,
33                 Context.MODE_PRIVATE);
34         return prefs.getInt(keyWarningState, def);
35     }
36 
setWarningState(Context context, int value)37     static void setWarningState(Context context, int value) {
38         String prefsBugreport = context.getResources().getString(
39                 com.android.internal.R.string.prefs_bugreport);
40         String keyWarningState = context.getResources().getString(
41                 com.android.internal.R.string.key_warning_state);
42         final SharedPreferences prefs = context.getSharedPreferences(prefsBugreport,
43                 Context.MODE_PRIVATE);
44         prefs.edit().putInt(keyWarningState, value).apply();
45     }
46 }
47