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

Side by Side Diff: components/offline_items_collection/core/offline_item.cc

Issue 2811803006: Add support for pulling icons for OfflineItems (Closed)
Patch Set: More findbugs Created 3 years, 8 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
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 #include "components/offline_items_collection/core/offline_item.h" 5 #include "components/offline_items_collection/core/offline_item.h"
6 6
7 namespace offline_items_collection { 7 namespace offline_items_collection {
8 8
9 ContentId::ContentId() = default; 9 ContentId::ContentId() = default;
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 original_url == offline_item.original_url && 62 original_url == offline_item.original_url &&
63 is_off_the_record == offline_item.is_off_the_record && 63 is_off_the_record == offline_item.is_off_the_record &&
64 state == offline_item.state && 64 state == offline_item.state &&
65 is_resumable == offline_item.is_resumable && 65 is_resumable == offline_item.is_resumable &&
66 allow_metered == offline_item.allow_metered && 66 allow_metered == offline_item.allow_metered &&
67 received_bytes == offline_item.received_bytes && 67 received_bytes == offline_item.received_bytes &&
68 percent_completed == offline_item.percent_completed && 68 percent_completed == offline_item.percent_completed &&
69 time_remaining_ms == offline_item.time_remaining_ms; 69 time_remaining_ms == offline_item.time_remaining_ms;
70 } 70 }
71 71
72 OfflineItemVisuals::OfflineItemVisuals() = default;
73 OfflineItemVisuals::OfflineItemVisuals(const OfflineItemVisuals& other) =
74 default;
75 OfflineItemVisuals::~OfflineItemVisuals() = default;
76
72 } // namespace offline_items_collection 77 } // namespace offline_items_collection
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698