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

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

Issue 25195003: Prepare to move core/platform/text into blink_platform.dll (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: re-attempt upload Created 7 years, 2 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/bindings/v8/custom/V8WebGLRenderingContextCustom.cpp » ('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, 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 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 #include "core/inspector/ScriptCallStack.h" 61 #include "core/inspector/ScriptCallStack.h"
62 #include "core/loader/DocumentLoader.h" 62 #include "core/loader/DocumentLoader.h"
63 #include "core/loader/FrameLoader.h" 63 #include "core/loader/FrameLoader.h"
64 #include "core/loader/FrameLoaderClient.h" 64 #include "core/loader/FrameLoaderClient.h"
65 #include "core/page/ContentSecurityPolicy.h" 65 #include "core/page/ContentSecurityPolicy.h"
66 #include "core/page/DOMWindow.h" 66 #include "core/page/DOMWindow.h"
67 #include "core/page/Frame.h" 67 #include "core/page/Frame.h"
68 #include "core/page/Page.h" 68 #include "core/page/Page.h"
69 #include "core/page/Settings.h" 69 #include "core/page/Settings.h"
70 #include "core/platform/HistogramSupport.h" 70 #include "core/platform/HistogramSupport.h"
71 #include "core/platform/NotImplemented.h" 71 #include "platform/NotImplemented.h"
72 #include "core/platform/Widget.h" 72 #include "core/platform/Widget.h"
73 #include "core/platform/chromium/TraceEvent.h" 73 #include "core/platform/chromium/TraceEvent.h"
74 #include "core/plugins/PluginView.h" 74 #include "core/plugins/PluginView.h"
75 #include "weborigin/SecurityOrigin.h" 75 #include "weborigin/SecurityOrigin.h"
76 #include "wtf/CurrentTime.h" 76 #include "wtf/CurrentTime.h"
77 #include "wtf/StdLibExtras.h" 77 #include "wtf/StdLibExtras.h"
78 #include "wtf/StringExtras.h" 78 #include "wtf/StringExtras.h"
79 #include "wtf/text/CString.h" 79 #include "wtf/text/CString.h"
80 #include "wtf/text/StringBuilder.h" 80 #include "wtf/text/StringBuilder.h"
81 #include "wtf/text/TextPosition.h" 81 #include "wtf/text/TextPosition.h"
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 v8Results = evaluateHandleScope.Close(resultArray); 699 v8Results = evaluateHandleScope.Close(resultArray);
700 } 700 }
701 701
702 if (results && !v8Results.IsEmpty()) { 702 if (results && !v8Results.IsEmpty()) {
703 for (size_t i = 0; i < v8Results->Length(); ++i) 703 for (size_t i = 0; i < v8Results->Length(); ++i)
704 results->append(ScriptValue(v8Results->Get(i), m_isolate)); 704 results->append(ScriptValue(v8Results->Get(i), m_isolate));
705 } 705 }
706 } 706 }
707 707
708 } // namespace WebCore 708 } // namespace WebCore
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/v8/custom/V8WebGLRenderingContextCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698