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

Side by Side Diff: WebCore/bindings/js/WorkerScriptController.cpp

Issue 28077: WebKit side of merge from r41149 to r41181. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/WebKit/
Patch Set: Created 11 years, 10 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 | « WebCore/ChangeLog ('k') | WebCore/bindings/v8/ScriptCachedFrameData.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 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 17 matching lines...) Expand all
28 28
29 #if ENABLE(WORKERS) 29 #if ENABLE(WORKERS)
30 30
31 #include "WorkerScriptController.h" 31 #include "WorkerScriptController.h"
32 32
33 #include "JSDOMBinding.h" 33 #include "JSDOMBinding.h"
34 #include "JSWorkerContext.h" 34 #include "JSWorkerContext.h"
35 #include "ScriptSourceCode.h" 35 #include "ScriptSourceCode.h"
36 #include "ScriptValue.h" 36 #include "ScriptValue.h"
37 #include "WorkerContext.h" 37 #include "WorkerContext.h"
38 #include "WorkerMessagingProxy.h" 38 #include "WorkerObjectProxy.h"
39 #include "WorkerThread.h" 39 #include "WorkerThread.h"
40 #include <interpreter/Interpreter.h> 40 #include <interpreter/Interpreter.h>
41 #include <runtime/Completion.h> 41 #include <runtime/Completion.h>
42 #include <runtime/Completion.h> 42 #include <runtime/Completion.h>
43 #include <runtime/JSLock.h> 43 #include <runtime/JSLock.h>
44 44
45 using namespace JSC; 45 using namespace JSC;
46 46
47 namespace WebCore { 47 namespace WebCore {
48 48
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 m_executionForbidden = true; 109 m_executionForbidden = true;
110 m_globalData->timeoutChecker.setTimeoutInterval(1); // 1ms is the smallest t imeout that can be set. 110 m_globalData->timeoutChecker.setTimeoutInterval(1); // 1ms is the smallest t imeout that can be set.
111 } 111 }
112 112
113 } // namespace WebCore 113 } // namespace WebCore
114 114
115 #endif // ENABLE(WORKERS) 115 #endif // ENABLE(WORKERS)
116 116
117 117
118 118
OLDNEW
« no previous file with comments | « WebCore/ChangeLog ('k') | WebCore/bindings/v8/ScriptCachedFrameData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698