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

Side by Side Diff: sky/engine/bindings/core/v8/WindowProxy.cpp

Issue 871383002: Merge HTMLDocument into Document (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2009, 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2008, 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 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "sky/engine/config.h" 31 #include "sky/engine/config.h"
32 #include "sky/engine/bindings/core/v8/WindowProxy.h" 32 #include "sky/engine/bindings/core/v8/WindowProxy.h"
33 33
34 #include <algorithm> 34 #include <algorithm>
35 #include <utility> 35 #include <utility>
36 36
37 #include "bindings/core/v8/V8Document.h" 37 #include "bindings/core/v8/V8Document.h"
38 #include "bindings/core/v8/V8HTMLDocument.h"
39 #include "bindings/core/v8/V8Window.h" 38 #include "bindings/core/v8/V8Window.h"
40 #include "gen/sky/platform/RuntimeEnabledFeatures.h" 39 #include "gen/sky/platform/RuntimeEnabledFeatures.h"
41 #include "sky/engine/bindings/core/v8/DOMWrapperWorld.h" 40 #include "sky/engine/bindings/core/v8/DOMWrapperWorld.h"
42 #include "sky/engine/bindings/core/v8/ScriptController.h" 41 #include "sky/engine/bindings/core/v8/ScriptController.h"
43 #include "sky/engine/bindings/core/v8/V8Binding.h" 42 #include "sky/engine/bindings/core/v8/V8Binding.h"
44 #include "sky/engine/bindings/core/v8/V8GCForContextDispose.h" 43 #include "sky/engine/bindings/core/v8/V8GCForContextDispose.h"
45 #include "sky/engine/bindings/core/v8/V8HiddenValue.h" 44 #include "sky/engine/bindings/core/v8/V8HiddenValue.h"
46 #include "sky/engine/bindings/core/v8/V8Initializer.h" 45 #include "sky/engine/bindings/core/v8/V8Initializer.h"
47 #include "sky/engine/bindings/core/v8/V8ObjectConstructor.h" 46 #include "sky/engine/bindings/core/v8/V8ObjectConstructor.h"
48 #include "sky/engine/core/frame/LocalFrame.h" 47 #include "sky/engine/core/frame/LocalFrame.h"
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 { 295 {
297 ASSERT(m_world->isMainWorld()); 296 ASSERT(m_world->isMainWorld());
298 if (!isGlobalInitialized()) 297 if (!isGlobalInitialized())
299 return; 298 return;
300 if (!isContextInitialized()) 299 if (!isContextInitialized())
301 return; 300 return;
302 updateDocumentProperty(); 301 updateDocumentProperty();
303 } 302 }
304 303
305 } // namespace blink 304 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/bindings/core/v8/WindowProxy.h ('k') | sky/engine/bindings/core/v8/custom/V8WindowCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698