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

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

Issue 705623002: Initialize V8 in PDFium from external files (in-renderer process only). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from Ross and Raymes Created 6 years, 1 month 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 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/basictypes.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"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 // This method should also only be called once, and on the MessageLoop's 50 // This method should also only be called once, and on the MessageLoop's
51 // thread. 51 // thread.
52 void RemoveRunMicrotasksObserver(); 52 void RemoveRunMicrotasksObserver();
53 53
54 #ifdef V8_USE_EXTERNAL_STARTUP_DATA 54 #ifdef V8_USE_EXTERNAL_STARTUP_DATA
55 #ifdef OS_ANDROID 55 #ifdef OS_ANDROID
56 static bool LoadV8SnapshotFD(int natives_fd, int snapshot_fd); 56 static bool LoadV8SnapshotFD(int natives_fd, int snapshot_fd);
57 #endif 57 #endif
58 static bool LoadV8Snapshot(); 58 static bool LoadV8Snapshot();
59 #ifndef OS_ANDROID
60 static void GetV8ExternalSnapshotData(const char** natives_data_out,
61 int* natives_size_out,
62 const char** snapshot_data_out,
63 int* snapshot_size_out);
64 #endif // OS_ANDROID
59 #endif // V8_USE_EXTERNAL_STARTUP_DATA 65 #endif // V8_USE_EXTERNAL_STARTUP_DATA
60 66
61 private: 67 private:
62 v8::Isolate* isolate_; 68 v8::Isolate* isolate_;
63 scoped_ptr<PerIsolateData> isolate_data_; 69 scoped_ptr<PerIsolateData> isolate_data_;
64 scoped_ptr<RunMicrotasksObserver> task_observer_; 70 scoped_ptr<RunMicrotasksObserver> task_observer_;
65 71
66 DISALLOW_COPY_AND_ASSIGN(IsolateHolder); 72 DISALLOW_COPY_AND_ASSIGN(IsolateHolder);
67 }; 73 };
68 74
69 } // namespace gin 75 } // namespace gin
70 76
71 #endif // GIN_PUBLIC_ISOLATE_HOLDER_H_ 77 #endif // GIN_PUBLIC_ISOLATE_HOLDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698