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

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

Issue 2246233002: [DevTools] Move platform/v8_inspector classes under v8_inspector namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/SourceLocation.h » ('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 * 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
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" 67 #include "platform/TraceEvent.h"
68 #include "platform/UserGestureIndicator.h" 68 #include "platform/UserGestureIndicator.h"
69 #include "platform/Widget.h" 69 #include "platform/Widget.h"
70 #include "platform/v8_inspector/public/V8StackTrace.h"
71 #include "platform/weborigin/SecurityOrigin.h" 70 #include "platform/weborigin/SecurityOrigin.h"
72 #include "public/platform/Platform.h" 71 #include "public/platform/Platform.h"
73 #include "wtf/CurrentTime.h" 72 #include "wtf/CurrentTime.h"
74 #include "wtf/StdLibExtras.h" 73 #include "wtf/StdLibExtras.h"
75 #include "wtf/StringExtras.h" 74 #include "wtf/StringExtras.h"
76 #include "wtf/text/CString.h" 75 #include "wtf/text/CString.h"
77 #include "wtf/text/StringBuilder.h" 76 #include "wtf/text/StringBuilder.h"
78 #include "wtf/text/TextPosition.h" 77 #include "wtf/text/TextPosition.h"
79 78
80 namespace blink { 79 namespace blink {
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 for (size_t i = 0; i < resultArray->Length(); ++i) { 425 for (size_t i = 0; i < resultArray->Length(); ++i) {
427 v8::Local<v8::Value> value; 426 v8::Local<v8::Value> value;
428 if (!resultArray->Get(scriptState->context(), i).ToLocal(&value)) 427 if (!resultArray->Get(scriptState->context(), i).ToLocal(&value))
429 return; 428 return;
430 results->append(value); 429 results->append(value);
431 } 430 }
432 } 431 }
433 } 432 }
434 433
435 } // namespace blink 434 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/SourceLocation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698