diff options
| author | Steve Block <steveblock@google.com> | 2011-10-03 15:33:09 +0100 |
|---|---|---|
| committer | Steve Block <steveblock@google.com> | 2011-10-03 17:51:57 +0100 |
| commit | 2466effd6ef97aa17396c214d51f9f19a4760260 (patch) | |
| tree | 5b37bb9e39d4e5614e55469195b81d4641677be5 /src/com/android/browser/PreloadController.java | |
| parent | 42a73941cd48a92aa1980afecb5e78be0b00972c (diff) | |
| download | packages_apps_Browser-2466effd6ef97aa17396c214d51f9f19a4760260.tar.gz packages_apps_Browser-2466effd6ef97aa17396c214d51f9f19a4760260.tar.bz2 packages_apps_Browser-2466effd6ef97aa17396c214d51f9f19a4760260.zip | |
Rename Tab.LockIcon to Tab.SecurityState
The tab's state is concerned with whether or not the page is secure. It should
not mention the lock icon, as this is just a UI choice of how to represent the
security state.
Also renames WebViewController.onUpdatedLockIcon() to onUpdatedSecurityState().
No functional change.
Bug: 5403366
Change-Id: Id18402e84fd9b1f661c160189c7a19a9352fd25c
Diffstat (limited to 'src/com/android/browser/PreloadController.java')
| -rw-r--r-- | src/com/android/browser/PreloadController.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/browser/PreloadController.java b/src/com/android/browser/PreloadController.java index dec22ff65..5de5be0af 100644 --- a/src/com/android/browser/PreloadController.java +++ b/src/com/android/browser/PreloadController.java @@ -209,8 +209,8 @@ public class PreloadController implements WebViewController { } @Override - public void onUpdatedLockIcon(Tab tab) { - if (LOGD_ENABLED) Log.d(LOGTAG, "onUpdatedLockIcon()"); + public void onUpdatedSecurityState(Tab tab) { + if (LOGD_ENABLED) Log.d(LOGTAG, "onUpdatedSecurityState()"); } @Override |
