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

Side by Side Diff: install_plan.h

Issue 3170010: [update_engine] Update to use not-hideously-old logging API from chrome (Closed) Base URL: http://src.chromium.org/git/update_engine.git
Patch Set: Created 10 years, 4 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 unified diff | Download patch
« no previous file with comments | « http_fetcher_unittest.cc ('k') | libcurl_http_fetcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_INSTALL_PLAN_H__ 5 #ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_INSTALL_PLAN_H__
6 #define CHROMEOS_PLATFORM_UPDATE_ENGINE_INSTALL_PLAN_H__ 6 #define CHROMEOS_PLATFORM_UPDATE_ENGINE_INSTALL_PLAN_H__
7 7
8 #include <string> 8 #include <string>
9 #include "chromeos/obsolete_logging.h" 9 #include "base/logging.h"
10 10
11 // InstallPlan is a simple struct that contains relevant info for many 11 // InstallPlan is a simple struct that contains relevant info for many
12 // parts of the update system about the install that should happen. 12 // parts of the update system about the install that should happen.
13 13
14 namespace chromeos_update_engine { 14 namespace chromeos_update_engine {
15 15
16 struct InstallPlan { 16 struct InstallPlan {
17 InstallPlan(bool is_full, 17 InstallPlan(bool is_full,
18 const std::string& url, 18 const std::string& url,
19 uint64_t size, 19 uint64_t size,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 << ", size: " << size 53 << ", size: " << size
54 << ", hash: " << download_hash 54 << ", hash: " << download_hash
55 << ", install_path: " << install_path 55 << ", install_path: " << install_path
56 << ", kernel_install_path: " << kernel_install_path; 56 << ", kernel_install_path: " << kernel_install_path;
57 } 57 }
58 }; 58 };
59 59
60 } // namespace chromeos_update_engine 60 } // namespace chromeos_update_engine
61 61
62 #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_INSTALL_PLAN_H__ 62 #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_INSTALL_PLAN_H__
OLDNEW
« no previous file with comments | « http_fetcher_unittest.cc ('k') | libcurl_http_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698