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

Side by Side Diff: Source/bindings/v8/custom/V8DOMWindowCustom.cpp

Issue 14323004: Make Frame's ScriptController an OwnPtr and remove the #include (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009, 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2011 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "FrameView.h" 43 #include "FrameView.h"
44 #include "HTMLCollection.h" 44 #include "HTMLCollection.h"
45 #include "HTMLDocument.h" 45 #include "HTMLDocument.h"
46 #include "Location.h" 46 #include "Location.h"
47 #include "MediaPlayer.h" 47 #include "MediaPlayer.h"
48 #include "MessagePort.h" 48 #include "MessagePort.h"
49 #include "Page.h" 49 #include "Page.h"
50 #include "PlatformScreen.h" 50 #include "PlatformScreen.h"
51 #include "ScheduledAction.h" 51 #include "ScheduledAction.h"
52 #include "ScriptCallStack.h" 52 #include "ScriptCallStack.h"
53 #include "ScriptController.h"
53 #include "ScriptSourceCode.h" 54 #include "ScriptSourceCode.h"
54 #include "SerializedScriptValue.h" 55 #include "SerializedScriptValue.h"
55 #include "Settings.h" 56 #include "Settings.h"
56 #include "SharedWorkerRepository.h" 57 #include "SharedWorkerRepository.h"
57 #include "Storage.h" 58 #include "Storage.h"
58 #include "V8Binding.h" 59 #include "V8Binding.h"
59 #include "V8EventListener.h" 60 #include "V8EventListener.h"
60 #include "V8EventListenerList.h" 61 #include "V8EventListenerList.h"
61 #include "V8GCForContextDispose.h" 62 #include "V8GCForContextDispose.h"
62 #include "V8HiddenPropertyName.h" 63 #include "V8HiddenPropertyName.h"
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 ASSERT(!global.IsEmpty()); 611 ASSERT(!global.IsEmpty());
611 return global; 612 return global;
612 } 613 }
613 614
614 v8::Handle<v8::Value> toV8ForMainWorld(DOMWindow* window, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 615 v8::Handle<v8::Value> toV8ForMainWorld(DOMWindow* window, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
615 { 616 {
616 return toV8(window, creationContext, isolate); 617 return toV8(window, creationContext, isolate);
617 } 618 }
618 619
619 } // namespace WebCore 620 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/bindings/v8/V8LazyEventListener.cpp ('k') | Source/bindings/v8/custom/V8DocumentCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698