2013-12-03 23:05:43 +00:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: nil; -*-
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2013-05-24 16:21:01 +00:00
|
|
|
package org.mozilla.gecko;
|
2013-12-03 23:05:43 +00:00
|
|
|
|
2013-05-24 16:21:01 +00:00
|
|
|
import android.content.Context;
|
2013-12-03 23:05:43 +00:00
|
|
|
import android.content.SharedPreferences;
|
2013-05-24 16:21:01 +00:00
|
|
|
|
2013-12-03 23:05:43 +00:00
|
|
|
public interface ContextGetter {
|
|
|
|
Context getContext();
|
|
|
|
SharedPreferences getSharedPreferences();
|
2013-05-24 16:21:01 +00:00
|
|
|
}
|
2013-12-03 23:05:43 +00:00
|
|
|
|