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

Unified Diff: src/platform/update_engine/update_check_action.cc

Issue 2037005: AU: check after 2 min, also every 30 min. (Closed) Base URL: ssh://git@chromiumos-git/chromeos
Patch Set: fix misspelling Created 10 years, 7 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 | « src/platform/update_engine/main.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/update_engine/update_check_action.cc
diff --git a/src/platform/update_engine/update_check_action.cc b/src/platform/update_engine/update_check_action.cc
index 57e82eb1c43e1ba9cb4475c5aa80e81813f8285b..98ff3dc9bffd6355e5cecf4e00840f47cdeed3ba 100644
--- a/src/platform/update_engine/update_check_action.cc
+++ b/src/platform/update_engine/update_check_action.cc
@@ -63,7 +63,9 @@ class ScopedPtrXmlXPathContextFree {
string FormatRequest(const UpdateCheckParams& params) {
return string("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<o:gupdate xmlns:o=\"http://www.google.com/update2/request\" "
- "version=\"" + XmlEncode(kGupdateVersion) + "\" protocol=\"2.0\" "
+ "version=\"" + XmlEncode(kGupdateVersion) + "\" "
+ "updaterversion=\"" + XmlEncode(kGupdateVersion) + "\" "
+ "protocol=\"2.0\" "
"machineid=\"") + XmlEncode(params.machine_id) + "\" ismachine=\"1\" "
"userid=\"" + XmlEncode(params.user_id) + "\">\n"
" <o:os version=\"" + XmlEncode(params.os_version) + "\" platform=\"" +
« no previous file with comments | « src/platform/update_engine/main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698