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

Unified Diff: Source/bindings/core/v8/ScriptController.h

Issue 921813002: Fix template angle bracket syntax in bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/core/v8/ScheduledAction.cpp ('k') | Source/bindings/core/v8/ScriptController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptController.h
diff --git a/Source/bindings/core/v8/ScriptController.h b/Source/bindings/core/v8/ScriptController.h
index 7bfefd474c1269edbaad7ba9624490c959f6ec61..360bb7861e666ca5fca8f003a7493c72ef092185 100644
--- a/Source/bindings/core/v8/ScriptController.h
+++ b/Source/bindings/core/v8/ScriptController.h
@@ -99,7 +99,7 @@ public:
//
// FIXME: Get rid of extensionGroup here.
// FIXME: We don't want to support multiple scripts.
- void executeScriptInIsolatedWorld(int worldID, const WillBeHeapVector<ScriptSourceCode>& sources, int extensionGroup, Vector<v8::Local<v8::Value> >* results);
+ void executeScriptInIsolatedWorld(int worldID, const WillBeHeapVector<ScriptSourceCode>& sources, int extensionGroup, Vector<v8::Local<v8::Value>>* results);
// Returns true if argument is a JavaScript URL.
bool executeScriptIfJavaScriptURL(const KURL&);
@@ -115,7 +115,7 @@ public:
// Creates a property of the global object of a frame.
void bindToWindowObject(LocalFrame*, const String& key, NPObject*);
- PassRefPtr<SharedPersistent<v8::Object> > createPluginWrapper(Widget*);
+ PassRefPtr<SharedPersistent<v8::Object>> createPluginWrapper(Widget*);
void enableEval();
void disableEval(const String& errorMessage);
@@ -123,7 +123,7 @@ public:
static bool canAccessFromCurrentOrigin(LocalFrame*);
static void setCaptureCallStackForUncaughtExceptions(bool);
- void collectIsolatedContexts(Vector<std::pair<ScriptState*, SecurityOrigin*> >&);
+ void collectIsolatedContexts(Vector<std::pair<ScriptState*, SecurityOrigin*>>&);
bool canExecuteScripts(ReasonForCallingCanExecuteScripts);
« no previous file with comments | « Source/bindings/core/v8/ScheduledAction.cpp ('k') | Source/bindings/core/v8/ScriptController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698