Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(387)

Unified Diff: components/component_updater/update_response.h

Issue 808773005: Move most of the component updater artifacts to update_client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/component_updater/update_checker.cc ('k') | components/component_updater/update_response.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/component_updater/update_response.h
diff --git a/components/component_updater/update_response.h b/components/component_updater/update_response.h
deleted file mode 100644
index c264696bcfa3a50c86af5ac581561e0256a8cd26..0000000000000000000000000000000000000000
--- a/components/component_updater/update_response.h
+++ /dev/null
@@ -1,135 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_COMPONENT_UPDATER_UPDATE_RESPONSE_H_
-#define COMPONENTS_COMPONENT_UPDATER_UPDATE_RESPONSE_H_
-
-#include <string>
-#include <vector>
-
-#include "base/macros.h"
-#include "url/gurl.h"
-
-namespace component_updater {
-
-// Parses responses for the update protocol version 3.
-// (http://code.google.com/p/omaha/wiki/ServerProtocol)
-//
-// An update response looks like this:
-//
-// <?xml version="1.0" encoding="UTF-8"?>
-// <response protocol="3.0" server="prod">
-// <daystart elapsed_seconds="56508"/>
-// <app appid="{430FD4D0-B729-4F61-AA34-91526481799D}" status="ok">
-// <updatecheck status="noupdate"/>
-// <ping status="ok"/>
-// </app>
-// <app appid="{D0AB2EBC-931B-4013-9FEB-C9C4C2225C8C}" status="ok">
-// <updatecheck status="ok">
-// <urls>
-// <url codebase="http://host/edgedl/chrome/install/782.112/"
-// <url codebasediff="http://fallback/chrome/diff/782.112/"/>
-// </urls>
-// <manifest version="13.0.782.112" prodversionmin="2.0.143.0">
-// <packages>
-// <package name="component.crx"
-// namediff="diff_1.2.3.4.crx"
-// fp="1.123"
-// hash_sha256="9830b4245c4..." size="23963192"
-// hashdiff_sha256="cfb6caf3d0..." sizediff="101"/>
-// </packages>
-// </manifest>
-// </updatecheck>
-// <ping status="ok"/>
-// </app>
-// </response>
-//
-// The <daystart> tag contains a "elapsed_seconds" attribute which refers to
-// the server's notion of how many seconds it has been since midnight.
-//
-// The "appid" attribute of the <app> tag refers to the unique id of the
-// extension. The "codebase" attribute of the <updatecheck> tag is the url to
-// fetch the updated crx file, and the "prodversionmin" attribute refers to
-// the minimum version of the chrome browser that the update applies to.
-//
-// The diff data members correspond to the differential update package, if
-// a differential update is specified in the response.
-class UpdateResponse {
- public:
- // The result of parsing one <app> tag in an xml update check response.
- struct Result {
- struct Manifest {
- struct Package {
- Package();
- ~Package();
-
- std::string fingerprint;
-
- // Attributes for the full update.
- std::string name;
- std::string hash_sha256;
- int size;
-
- // Attributes for the differential update.
- std::string namediff;
- std::string hashdiff_sha256;
- int sizediff;
- };
-
- Manifest();
- ~Manifest();
-
- std::string version;
- std::string browser_min_version;
- std::vector<Package> packages;
- };
-
- Result();
- ~Result();
-
- std::string extension_id;
-
- // The list of fallback urls, for full and diff updates respectively.
- // These urls are base urls; they don't include the filename.
- std::vector<GURL> crx_urls;
- std::vector<GURL> crx_diffurls;
-
- Manifest manifest;
- };
-
- static const int kNoDaystart = -1;
- struct Results {
- Results();
- ~Results();
-
- // This will be >= 0, or kNoDaystart if the <daystart> tag was not present.
- int daystart_elapsed_seconds;
- std::vector<Result> list;
- };
-
- UpdateResponse();
- ~UpdateResponse();
-
- // Parses an update response xml string into Result data. Returns a bool
- // indicating success or failure. On success, the results are available by
- // calling results(). The details for any failures are available by calling
- // errors().
- bool Parse(const std::string& manifest_xml);
-
- const Results& results() const { return results_; }
- const std::string& errors() const { return errors_; }
-
- private:
- Results results_;
- std::string errors_;
-
- // Adds parse error details to |errors_| string.
- void ParseError(const char* details, ...);
-
- DISALLOW_COPY_AND_ASSIGN(UpdateResponse);
-};
-
-} // namespace component_updater
-
-#endif // COMPONENTS_COMPONENT_UPDATER_UPDATE_RESPONSE_H_
« no previous file with comments | « components/component_updater/update_checker.cc ('k') | components/component_updater/update_response.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698