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

Side by Side Diff: src/libplatform/default-platform.h

Issue 526223002: Use Chrome compatible naming for compiler specifics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: mips Created 6 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 | « src/jsregexp.h ('k') | src/libplatform/task-queue-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 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 4
5 #ifndef V8_LIBPLATFORM_DEFAULT_PLATFORM_H_ 5 #ifndef V8_LIBPLATFORM_DEFAULT_PLATFORM_H_
6 #define V8_LIBPLATFORM_DEFAULT_PLATFORM_H_ 6 #define V8_LIBPLATFORM_DEFAULT_PLATFORM_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 #include <vector> 10 #include <vector>
(...skipping 16 matching lines...) Expand all
27 virtual ~DefaultPlatform(); 27 virtual ~DefaultPlatform();
28 28
29 void SetThreadPoolSize(int thread_pool_size); 29 void SetThreadPoolSize(int thread_pool_size);
30 30
31 void EnsureInitialized(); 31 void EnsureInitialized();
32 32
33 bool PumpMessageLoop(v8::Isolate* isolate); 33 bool PumpMessageLoop(v8::Isolate* isolate);
34 34
35 // v8::Platform implementation. 35 // v8::Platform implementation.
36 virtual void CallOnBackgroundThread( 36 virtual void CallOnBackgroundThread(
37 Task* task, ExpectedRuntime expected_runtime) V8_OVERRIDE; 37 Task* task, ExpectedRuntime expected_runtime) OVERRIDE;
38 virtual void CallOnForegroundThread(v8::Isolate* isolate, 38 virtual void CallOnForegroundThread(v8::Isolate* isolate,
39 Task* task) V8_OVERRIDE; 39 Task* task) OVERRIDE;
40 40
41 private: 41 private:
42 static const int kMaxThreadPoolSize; 42 static const int kMaxThreadPoolSize;
43 43
44 base::Mutex lock_; 44 base::Mutex lock_;
45 bool initialized_; 45 bool initialized_;
46 int thread_pool_size_; 46 int thread_pool_size_;
47 std::vector<WorkerThread*> thread_pool_; 47 std::vector<WorkerThread*> thread_pool_;
48 TaskQueue queue_; 48 TaskQueue queue_;
49 std::map<v8::Isolate*, std::queue<Task*> > main_thread_queue_; 49 std::map<v8::Isolate*, std::queue<Task*> > main_thread_queue_;
50 50
51 DISALLOW_COPY_AND_ASSIGN(DefaultPlatform); 51 DISALLOW_COPY_AND_ASSIGN(DefaultPlatform);
52 }; 52 };
53 53
54 54
55 } } // namespace v8::platform 55 } } // namespace v8::platform
56 56
57 57
58 #endif // V8_LIBPLATFORM_DEFAULT_PLATFORM_H_ 58 #endif // V8_LIBPLATFORM_DEFAULT_PLATFORM_H_
OLDNEW
« no previous file with comments | « src/jsregexp.h ('k') | src/libplatform/task-queue-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698