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

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

Issue 2804753005: Rewrite references to "wtf/" to "platform/wtf/" in bindings. (Closed)
Patch Set: Created 3 years, 8 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 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 #include "core/loader/FrameLoader.h" 52 #include "core/loader/FrameLoader.h"
53 #include "core/loader/NavigationScheduler.h" 53 #include "core/loader/NavigationScheduler.h"
54 #include "core/loader/ProgressTracker.h" 54 #include "core/loader/ProgressTracker.h"
55 #include "core/plugins/PluginView.h" 55 #include "core/plugins/PluginView.h"
56 #include "core/probe/CoreProbes.h" 56 #include "core/probe/CoreProbes.h"
57 #include "platform/FrameViewBase.h" 57 #include "platform/FrameViewBase.h"
58 #include "platform/Histogram.h" 58 #include "platform/Histogram.h"
59 #include "platform/UserGestureIndicator.h" 59 #include "platform/UserGestureIndicator.h"
60 #include "platform/instrumentation/tracing/TraceEvent.h" 60 #include "platform/instrumentation/tracing/TraceEvent.h"
61 #include "platform/weborigin/SecurityOrigin.h" 61 #include "platform/weborigin/SecurityOrigin.h"
62 #include "wtf/CurrentTime.h" 62 #include "platform/wtf/CurrentTime.h"
63 #include "wtf/StdLibExtras.h" 63 #include "platform/wtf/StdLibExtras.h"
64 #include "wtf/StringExtras.h" 64 #include "platform/wtf/StringExtras.h"
65 #include "wtf/text/CString.h" 65 #include "platform/wtf/text/CString.h"
66 #include "wtf/text/StringBuilder.h" 66 #include "platform/wtf/text/StringBuilder.h"
67 67
68 namespace blink { 68 namespace blink {
69 69
70 DEFINE_TRACE(ScriptController) { 70 DEFINE_TRACE(ScriptController) {
71 visitor->trace(m_frame); 71 visitor->trace(m_frame);
72 visitor->trace(m_windowProxyManager); 72 visitor->trace(m_windowProxyManager);
73 } 73 }
74 74
75 void ScriptController::clearForClose() { 75 void ScriptController::clearForClose() {
76 m_windowProxyManager->clearForClose(); 76 m_windowProxyManager->clearForClose();
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 for (size_t i = 0; i < resultArray->Length(); ++i) { 358 for (size_t i = 0; i < resultArray->Length(); ++i) {
359 v8::Local<v8::Value> value; 359 v8::Local<v8::Value> value;
360 if (!resultArray->Get(context, i).ToLocal(&value)) 360 if (!resultArray->Get(context, i).ToLocal(&value))
361 return; 361 return;
362 results->push_back(value); 362 results->push_back(value);
363 } 363 }
364 } 364 }
365 } 365 }
366 366
367 } // namespace blink 367 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698