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

Side by Side Diff: courgette/ensemble.cc

Issue 3176026: FBTF: Remove unneeded headers from base/ (part 7) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « chrome_frame/utils.cc ('k') | courgette/ensemble_apply.cc » ('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) 2010 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 "courgette/ensemble.h" 5 #include "courgette/ensemble.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/logging.h"
9 #include "base/string_number_conversions.h" 8 #include "base/string_number_conversions.h"
10 9
11 #include "courgette/image_info.h" 10 #include "courgette/image_info.h"
12 #include "courgette/region.h" 11 #include "courgette/region.h"
13 #include "courgette/streams.h" 12 #include "courgette/streams.h"
14 #include "courgette/simple_delta.h" 13 #include "courgette/simple_delta.h"
15 14
16 namespace courgette { 15 namespace courgette {
17 16
18 Element::Element(Kind kind, Ensemble* ensemble, const Region& region) 17 Element::Element(Kind kind, Ensemble* ensemble, const Region& region)
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 } 93 }
95 return C_OK; 94 return C_OK;
96 } 95 }
97 96
98 Ensemble::~Ensemble() { 97 Ensemble::~Ensemble() {
99 for (size_t i = 0; i < owned_elements_.size(); ++i) 98 for (size_t i = 0; i < owned_elements_.size(); ++i)
100 delete owned_elements_[i]; 99 delete owned_elements_[i];
101 } 100 }
102 101
103 } // namespace 102 } // namespace
OLDNEW
« no previous file with comments | « chrome_frame/utils.cc ('k') | courgette/ensemble_apply.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698