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

Side by Side Diff: src/i18n.cc

Issue 2622503002: include fixing: api.h shouldn't include objects-inl.h (Closed)
Patch Set: static type check Created 3 years, 11 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 | « src/handles.h ('k') | src/interpreter/bytecode-array-writer.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project 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 // limitations under the License. 4 // limitations under the License.
5 5
6 #include "src/i18n.h" 6 #include "src/i18n.h"
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "src/api.h" 10 #include "src/api.h"
11 #include "src/factory.h" 11 #include "src/factory.h"
12 #include "src/isolate.h" 12 #include "src/isolate.h"
13 #include "src/objects-inl.h"
13 #include "unicode/brkiter.h" 14 #include "unicode/brkiter.h"
14 #include "unicode/calendar.h" 15 #include "unicode/calendar.h"
15 #include "unicode/coll.h" 16 #include "unicode/coll.h"
16 #include "unicode/curramt.h" 17 #include "unicode/curramt.h"
17 #include "unicode/dcfmtsym.h" 18 #include "unicode/dcfmtsym.h"
18 #include "unicode/decimfmt.h" 19 #include "unicode/decimfmt.h"
19 #include "unicode/dtfmtsym.h" 20 #include "unicode/dtfmtsym.h"
20 #include "unicode/dtptngen.h" 21 #include "unicode/dtptngen.h"
21 #include "unicode/gregocal.h" 22 #include "unicode/gregocal.h"
22 #include "unicode/locid.h" 23 #include "unicode/locid.h"
(...skipping 935 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 959
959 void BreakIterator::DeleteBreakIterator( 960 void BreakIterator::DeleteBreakIterator(
960 const v8::WeakCallbackInfo<void>& data) { 961 const v8::WeakCallbackInfo<void>& data) {
961 delete reinterpret_cast<icu::BreakIterator*>(data.GetInternalField(0)); 962 delete reinterpret_cast<icu::BreakIterator*>(data.GetInternalField(0));
962 delete reinterpret_cast<icu::UnicodeString*>(data.GetInternalField(1)); 963 delete reinterpret_cast<icu::UnicodeString*>(data.GetInternalField(1));
963 GlobalHandles::Destroy(reinterpret_cast<Object**>(data.GetParameter())); 964 GlobalHandles::Destroy(reinterpret_cast<Object**>(data.GetParameter()));
964 } 965 }
965 966
966 } // namespace internal 967 } // namespace internal
967 } // namespace v8 968 } // namespace v8
OLDNEW
« no previous file with comments | « src/handles.h ('k') | src/interpreter/bytecode-array-writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698