summaryrefslogtreecommitdiff
path: root/indra/viewer_components/updater/llupdatechecker.h
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2013-02-27 17:40:39 -0500
committerOz Linden <oz@lindenlab.com>2013-02-27 17:40:39 -0500
commit49ed1a4e32013cda716998784338a01b12c663ef (patch)
tree9c1f83682d8651160d6a52e26cc267b0d557d794 /indra/viewer_components/updater/llupdatechecker.h
parent13fe905b24546dda39a88466517aa0c6b449fbd8 (diff)
finish changes to update handling, including notices of channel changes
Diffstat (limited to 'indra/viewer_components/updater/llupdatechecker.h')
-rw-r--r--indra/viewer_components/updater/llupdatechecker.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/indra/viewer_components/updater/llupdatechecker.h b/indra/viewer_components/updater/llupdatechecker.h
index b60f21549e..55806137d7 100644
--- a/indra/viewer_components/updater/llupdatechecker.h
+++ b/indra/viewer_components/updater/llupdatechecker.h
@@ -117,18 +117,8 @@ public:
// An error occurred while checking for an update.
virtual void error(std::string const & message) = 0;
- // A newer version is available, but the current version may still be used.
- virtual void optionalUpdate(std::string const & newVersion,
- LLURI const & uri,
- std::string const & hash) = 0;
-
- // A newer version is available, and the current version is no longer valid.
- virtual void requiredUpdate(std::string const & newVersion,
- LLURI const & uri,
- std::string const & hash) = 0;
-
- // The checked version is up to date; no newer version exists.
- virtual void upToDate(void) = 0;
+ // A successful response was received from the viewer version manager
+ virtual void response(LLSD const & content) = 0;
};