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

Unified Diff: src/platform/update_engine/http_fetcher.h

Issue 466036: AU: Beginnings of delta support (Closed)
Patch Set: Created 11 years 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
Index: src/platform/update_engine/http_fetcher.h
diff --git a/src/platform/update_engine/http_fetcher.h b/src/platform/update_engine/http_fetcher.h
index 6e269065d0e9c63b3f573b86afad42be291675b9..5cd6f08559fc33976cd70be8d81953f45a869f8c 100644
--- a/src/platform/update_engine/http_fetcher.h
+++ b/src/platform/update_engine/http_fetcher.h
@@ -2,10 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef UPDATE_ENGINE_HTTP_FETCHER_H__
-#define UPDATE_ENGINE_HTTP_FETCHER_H__
+#ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_HTTP_FETCHER_H__
+#define CHROMEOS_PLATFORM_UPDATE_ENGINE_HTTP_FETCHER_H__
#include <string>
+#include <vector>
#include <glib.h>
#include "base/basictypes.h"
@@ -22,7 +23,7 @@ class HttpFetcherDelegate;
class HttpFetcher {
public:
- HttpFetcher() : delegate_(NULL) {}
+ HttpFetcher() : post_data_set_(false), delegate_(NULL) {}
virtual ~HttpFetcher() {}
void set_delegate(HttpFetcherDelegate* delegate) {
delegate_ = delegate;
@@ -87,4 +88,4 @@ class HttpFetcherDelegate {
} // namespace chromeos_update_engine
-#endif // UPDATE_ENGINE_HTTP_FETCHER_H__
+#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_HTTP_FETCHER_H__
« no previous file with comments | « src/platform/update_engine/gen_coverage_html.sh ('k') | src/platform/update_engine/http_fetcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698