| OLD | NEW |
| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 #include "core/inspector/InspectorInstrumentation.h" | 57 #include "core/inspector/InspectorInstrumentation.h" |
| 58 #include "core/inspector/InspectorTraceEvents.h" | 58 #include "core/inspector/InspectorTraceEvents.h" |
| 59 #include "core/inspector/MainThreadDebugger.h" | 59 #include "core/inspector/MainThreadDebugger.h" |
| 60 #include "core/loader/DocumentLoader.h" | 60 #include "core/loader/DocumentLoader.h" |
| 61 #include "core/loader/FrameLoader.h" | 61 #include "core/loader/FrameLoader.h" |
| 62 #include "core/loader/FrameLoaderClient.h" | 62 #include "core/loader/FrameLoaderClient.h" |
| 63 #include "core/loader/NavigationScheduler.h" | 63 #include "core/loader/NavigationScheduler.h" |
| 64 #include "core/loader/ProgressTracker.h" | 64 #include "core/loader/ProgressTracker.h" |
| 65 #include "core/plugins/PluginView.h" | 65 #include "core/plugins/PluginView.h" |
| 66 #include "platform/Histogram.h" | 66 #include "platform/Histogram.h" |
| 67 #include "platform/TraceEvent.h" | |
| 68 #include "platform/UserGestureIndicator.h" | 67 #include "platform/UserGestureIndicator.h" |
| 69 #include "platform/Widget.h" | 68 #include "platform/Widget.h" |
| 69 #include "platform/tracing/TraceEvent.h" |
| 70 #include "platform/weborigin/SecurityOrigin.h" | 70 #include "platform/weborigin/SecurityOrigin.h" |
| 71 #include "public/platform/Platform.h" | 71 #include "public/platform/Platform.h" |
| 72 #include "wtf/CurrentTime.h" | 72 #include "wtf/CurrentTime.h" |
| 73 #include "wtf/StdLibExtras.h" | 73 #include "wtf/StdLibExtras.h" |
| 74 #include "wtf/StringExtras.h" | 74 #include "wtf/StringExtras.h" |
| 75 #include "wtf/text/CString.h" | 75 #include "wtf/text/CString.h" |
| 76 #include "wtf/text/StringBuilder.h" | 76 #include "wtf/text/StringBuilder.h" |
| 77 #include "wtf/text/TextPosition.h" | 77 #include "wtf/text/TextPosition.h" |
| 78 | 78 |
| 79 namespace blink { | 79 namespace blink { |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 for (size_t i = 0; i < resultArray->Length(); ++i) { | 425 for (size_t i = 0; i < resultArray->Length(); ++i) { |
| 426 v8::Local<v8::Value> value; | 426 v8::Local<v8::Value> value; |
| 427 if (!resultArray->Get(scriptState->context(), i).ToLocal(&value)) | 427 if (!resultArray->Get(scriptState->context(), i).ToLocal(&value)) |
| 428 return; | 428 return; |
| 429 results->append(value); | 429 results->append(value); |
| 430 } | 430 } |
| 431 } | 431 } |
| 432 } | 432 } |
| 433 | 433 |
| 434 } // namespace blink | 434 } // namespace blink |
| OLD | NEW |