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

Side by Side Diff: Source/bindings/core/v8/ScriptController.cpp

Issue 1330653003: Oilpan: tidy up NavigationScheduler. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add missing include Created 5 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 | « no previous file | Source/core/dom/Document.cpp » ('j') | Source/core/loader/NavigationScheduler.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2009 Apple Inc. All rights reserved. 3 * Copyright (C) 2009 Apple Inc. All rights reserved.
4 * Copyright (C) 2014 Opera Software ASA. All rights reserved. 4 * Copyright (C) 2014 Opera Software ASA. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * * Redistributions of source code must retain the above copyright 10 * * Redistributions of source code must retain the above copyright
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 #include "core/frame/UseCounter.h" 59 #include "core/frame/UseCounter.h"
60 #include "core/frame/csp/ContentSecurityPolicy.h" 60 #include "core/frame/csp/ContentSecurityPolicy.h"
61 #include "core/html/HTMLPlugInElement.h" 61 #include "core/html/HTMLPlugInElement.h"
62 #include "core/inspector/ConsoleMessage.h" 62 #include "core/inspector/ConsoleMessage.h"
63 #include "core/inspector/InspectorInstrumentation.h" 63 #include "core/inspector/InspectorInstrumentation.h"
64 #include "core/inspector/InspectorTraceEvents.h" 64 #include "core/inspector/InspectorTraceEvents.h"
65 #include "core/inspector/ScriptCallStack.h" 65 #include "core/inspector/ScriptCallStack.h"
66 #include "core/loader/DocumentLoader.h" 66 #include "core/loader/DocumentLoader.h"
67 #include "core/loader/FrameLoader.h" 67 #include "core/loader/FrameLoader.h"
68 #include "core/loader/FrameLoaderClient.h" 68 #include "core/loader/FrameLoaderClient.h"
69 #include "core/loader/NavigationScheduler.h"
69 #include "core/loader/ProgressTracker.h" 70 #include "core/loader/ProgressTracker.h"
70 #include "core/plugins/PluginView.h" 71 #include "core/plugins/PluginView.h"
71 #include "platform/NotImplemented.h" 72 #include "platform/NotImplemented.h"
72 #include "platform/TraceEvent.h" 73 #include "platform/TraceEvent.h"
73 #include "platform/UserGestureIndicator.h" 74 #include "platform/UserGestureIndicator.h"
74 #include "platform/Widget.h" 75 #include "platform/Widget.h"
75 #include "platform/weborigin/SecurityOrigin.h" 76 #include "platform/weborigin/SecurityOrigin.h"
76 #include "public/platform/Platform.h" 77 #include "public/platform/Platform.h"
77 #include "wtf/CurrentTime.h" 78 #include "wtf/CurrentTime.h"
78 #include "wtf/StdLibExtras.h" 79 #include "wtf/StdLibExtras.h"
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 for (size_t i = 0; i < resultArray->Length(); ++i) { 593 for (size_t i = 0; i < resultArray->Length(); ++i) {
593 v8::Local<v8::Value> value; 594 v8::Local<v8::Value> value;
594 if (!resultArray->Get(scriptState->context(), i).ToLocal(&value)) 595 if (!resultArray->Get(scriptState->context(), i).ToLocal(&value))
595 return; 596 return;
596 results->append(value); 597 results->append(value);
597 } 598 }
598 } 599 }
599 } 600 }
600 601
601 } // namespace blink 602 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/Document.cpp » ('j') | Source/core/loader/NavigationScheduler.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698