| 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__
|
|
|