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

Side by Side Diff: gin/interceptor.cc

Issue 1541743002: Switch to standard integer types in gin/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « gin/interceptor.h ('k') | gin/interceptor_unittest.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "gin/interceptor.h" 5 #include "gin/interceptor.h"
6 6
7 #include <stdint.h>
8
7 #include <map> 9 #include <map>
8 10
9 #include "gin/per_isolate_data.h" 11 #include "gin/per_isolate_data.h"
10 12
11 namespace gin { 13 namespace gin {
12 14
13 NamedPropertyInterceptor::NamedPropertyInterceptor(v8::Isolate* isolate, 15 NamedPropertyInterceptor::NamedPropertyInterceptor(v8::Isolate* isolate,
14 WrappableBase* base) 16 WrappableBase* base)
15 : isolate_(isolate), base_(base) { 17 : isolate_(isolate), base_(base) {
16 PerIsolateData::From(isolate_)->SetNamedPropertyInterceptor(base_, this); 18 PerIsolateData::From(isolate_)->SetNamedPropertyInterceptor(base_, this);
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 v8::Local<v8::Value> value) { 61 v8::Local<v8::Value> value) {
60 return false; 62 return false;
61 } 63 }
62 64
63 std::vector<uint32_t> IndexedPropertyInterceptor::EnumerateIndexedProperties( 65 std::vector<uint32_t> IndexedPropertyInterceptor::EnumerateIndexedProperties(
64 v8::Isolate* isolate) { 66 v8::Isolate* isolate) {
65 return std::vector<uint32_t>(); 67 return std::vector<uint32_t>();
66 } 68 }
67 69
68 } // namespace gin 70 } // namespace gin
OLDNEW
« no previous file with comments | « gin/interceptor.h ('k') | gin/interceptor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698