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

Side by Side Diff: Source/bindings/v8/V8Binding.cpp

Issue 13973026: remove memoryinstrumentation Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove the rest part of MemoryInstrumentation Created 7 years, 8 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 | « Source/bindings/v8/ScriptWrappable.h ('k') | Source/bindings/v8/V8PerIsolateData.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) 2006, 2007, 2008, 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 29 matching lines...) Expand all
40 #include "QualifiedName.h" 40 #include "QualifiedName.h"
41 #include "ScriptController.h" 41 #include "ScriptController.h"
42 #include "Settings.h" 42 #include "Settings.h"
43 #include "V8DOMStringList.h" 43 #include "V8DOMStringList.h"
44 #include "V8DOMWindow.h" 44 #include "V8DOMWindow.h"
45 #include "V8Element.h" 45 #include "V8Element.h"
46 #include "V8NodeFilterCondition.h" 46 #include "V8NodeFilterCondition.h"
47 #include "V8ObjectConstructor.h" 47 #include "V8ObjectConstructor.h"
48 #include "V8WorkerContext.h" 48 #include "V8WorkerContext.h"
49 #include "V8XPathNSResolver.h" 49 #include "V8XPathNSResolver.h"
50 #include "WebCoreMemoryInstrumentation.h"
51 #include "WorkerContext.h" 50 #include "WorkerContext.h"
52 #include "WorkerScriptController.h" 51 #include "WorkerScriptController.h"
53 #include "XPathNSResolver.h" 52 #include "XPathNSResolver.h"
54 #include <wtf/MathExtras.h> 53 #include <wtf/MathExtras.h>
55 #include <wtf/MainThread.h> 54 #include <wtf/MainThread.h>
56 #include <wtf/StdLibExtras.h> 55 #include <wtf/StdLibExtras.h>
57 #include <wtf/Threading.h> 56 #include <wtf/Threading.h>
58 #include <wtf/text/AtomicString.h> 57 #include <wtf/text/AtomicString.h>
59 #include <wtf/text/CString.h> 58 #include <wtf/text/CString.h>
60 #include <wtf/text/StringBuffer.h> 59 #include <wtf/text/StringBuffer.h>
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 if (!DOMWrapperWorld::isolatedWorldsExist()) 401 if (!DOMWrapperWorld::isolatedWorldsExist())
403 return MainWorld; 402 return MainWorld;
404 ASSERT(!v8::Context::GetEntered().IsEmpty()); 403 ASSERT(!v8::Context::GetEntered().IsEmpty());
405 DOMWrapperWorld* isolatedWorld = DOMWrapperWorld::isolatedWorld(v8::Context: :GetEntered()); 404 DOMWrapperWorld* isolatedWorld = DOMWrapperWorld::isolatedWorld(v8::Context: :GetEntered());
406 if (isolatedWorld) 405 if (isolatedWorld)
407 return IsolatedWorld; 406 return IsolatedWorld;
408 return MainWorld; 407 return MainWorld;
409 } 408 }
410 409
411 } // namespace WebCore 410 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/bindings/v8/ScriptWrappable.h ('k') | Source/bindings/v8/V8PerIsolateData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698