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

Side by Side Diff: gin/public/isolate_holder.h

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/public/debug.h ('k') | gin/public/v8_idle_task_runner.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 GIN_PUBLIC_ISOLATE_HOLDER_H_ 5 #ifndef GIN_PUBLIC_ISOLATE_HOLDER_H_
6 #define GIN_PUBLIC_ISOLATE_HOLDER_H_ 6 #define GIN_PUBLIC_ISOLATE_HOLDER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "gin/gin_export.h" 10 #include "gin/gin_export.h"
11 #include "gin/public/v8_idle_task_runner.h" 11 #include "gin/public/v8_idle_task_runner.h"
12 #include "v8/include/v8.h" 12 #include "v8/include/v8.h"
13 13
14 namespace gin { 14 namespace gin {
15 15
16 class PerIsolateData; 16 class PerIsolateData;
17 class RunMicrotasksObserver; 17 class RunMicrotasksObserver;
18 class V8IsolateMemoryDumpProvider; 18 class V8IsolateMemoryDumpProvider;
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 scoped_ptr<RunMicrotasksObserver> task_observer_; 89 scoped_ptr<RunMicrotasksObserver> task_observer_;
90 scoped_ptr<V8IsolateMemoryDumpProvider> isolate_memory_dump_provider_; 90 scoped_ptr<V8IsolateMemoryDumpProvider> isolate_memory_dump_provider_;
91 AccessMode access_mode_; 91 AccessMode access_mode_;
92 92
93 DISALLOW_COPY_AND_ASSIGN(IsolateHolder); 93 DISALLOW_COPY_AND_ASSIGN(IsolateHolder);
94 }; 94 };
95 95
96 } // namespace gin 96 } // namespace gin
97 97
98 #endif // GIN_PUBLIC_ISOLATE_HOLDER_H_ 98 #endif // GIN_PUBLIC_ISOLATE_HOLDER_H_
OLDNEW
« no previous file with comments | « gin/public/debug.h ('k') | gin/public/v8_idle_task_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698