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

Side by Side Diff: Source/web/WebLocalFrameImpl.h

Issue 843683005: Fix a bit of C++11 in web/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 virtual void setIsolatedWorldHumanReadableName(int worldID, const WebString& ) override; 109 virtual void setIsolatedWorldHumanReadableName(int worldID, const WebString& ) override;
110 virtual void addMessageToConsole(const WebConsoleMessage&) override; 110 virtual void addMessageToConsole(const WebConsoleMessage&) override;
111 virtual void collectGarbage() override; 111 virtual void collectGarbage() override;
112 virtual bool checkIfRunInsecureContent(const WebURL&) const override; 112 virtual bool checkIfRunInsecureContent(const WebURL&) const override;
113 virtual v8::Handle<v8::Value> executeScriptAndReturnValue( 113 virtual v8::Handle<v8::Value> executeScriptAndReturnValue(
114 const WebScriptSource&) override; 114 const WebScriptSource&) override;
115 virtual void requestExecuteScriptAndReturnValue( 115 virtual void requestExecuteScriptAndReturnValue(
116 const WebScriptSource&, bool userGesture, WebScriptExecutionCallback*) o verride; 116 const WebScriptSource&, bool userGesture, WebScriptExecutionCallback*) o verride;
117 virtual void executeScriptInIsolatedWorld( 117 virtual void executeScriptInIsolatedWorld(
118 int worldID, const WebScriptSource* sourcesIn, unsigned numSources, 118 int worldID, const WebScriptSource* sourcesIn, unsigned numSources,
119 int extensionGroup, WebVector<v8::Local<v8::Value> >* results) override; 119 int extensionGroup, WebVector<v8::Local<v8::Value>>* results) override;
120 virtual void requestExecuteScriptInIsolatedWorld( 120 virtual void requestExecuteScriptInIsolatedWorld(
121 int worldID, const WebScriptSource* sourceIn, unsigned numSources, 121 int worldID, const WebScriptSource* sourceIn, unsigned numSources,
122 int extensionGroup, bool userGesture, WebScriptExecutionCallback*) overr ide; 122 int extensionGroup, bool userGesture, WebScriptExecutionCallback*) overr ide;
123 virtual v8::Handle<v8::Value> callFunctionEvenIfScriptDisabled( 123 virtual v8::Handle<v8::Value> callFunctionEvenIfScriptDisabled(
124 v8::Handle<v8::Function>, 124 v8::Handle<v8::Function>,
125 v8::Handle<v8::Value>, 125 v8::Handle<v8::Value>,
126 int argc, 126 int argc,
127 v8::Handle<v8::Value> argv[]) override; 127 v8::Handle<v8::Value> argv[]) override;
128 virtual v8::Local<v8::Context> mainWorldScriptContext() const override; 128 virtual v8::Local<v8::Context> mainWorldScriptContext() const override;
129 virtual void reload(bool ignoreCache) override; 129 virtual void reload(bool ignoreCache) override;
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 GC_PLUGIN_IGNORE("340522") 376 GC_PLUGIN_IGNORE("340522")
377 Persistent<WebLocalFrameImpl> m_selfKeepAlive; 377 Persistent<WebLocalFrameImpl> m_selfKeepAlive;
378 #endif 378 #endif
379 }; 379 };
380 380
381 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(), frame.isWebLocalFrame()); 381 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(), frame.isWebLocalFrame());
382 382
383 } // namespace blink 383 } // namespace blink
384 384
385 #endif 385 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698