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

Unified Diff: content/shell/tools/plugin/Tests/GetURLWithJavaScriptURL.cpp

Issue 629143003: Replace OVERRIDE and FINAL with override and final in content/shell/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
Index: content/shell/tools/plugin/Tests/GetURLWithJavaScriptURL.cpp
diff --git a/content/shell/tools/plugin/Tests/GetURLWithJavaScriptURL.cpp b/content/shell/tools/plugin/Tests/GetURLWithJavaScriptURL.cpp
index 73d97d4a208f0b7621c6396bcd4d153842ec031b..68f215c94ba402dc64180d7304c3cd37655954bf 100644
--- a/content/shell/tools/plugin/Tests/GetURLWithJavaScriptURL.cpp
+++ b/content/shell/tools/plugin/Tests/GetURLWithJavaScriptURL.cpp
@@ -53,12 +53,12 @@ private:
int16_t argc,
char* argn[],
char* argv[],
- NPSavedData* saved) OVERRIDE {
+ NPSavedData* saved) override {
NPN_GetURL(javaScriptURL, 0);
return NPERR_NO_ERROR;
}
- virtual NPError NPP_NewStream(NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype) OVERRIDE
+ virtual NPError NPP_NewStream(NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype) override
{
stream->pdata = this;
@@ -72,7 +72,7 @@ private:
return NPERR_NO_ERROR;
}
- virtual NPError NPP_DestroyStream(NPStream* stream, NPReason reason) OVERRIDE
+ virtual NPError NPP_DestroyStream(NPStream* stream, NPReason reason) override
{
if (stream->pdata != this)
m_didFail = true;
@@ -96,7 +96,7 @@ private:
return NPERR_NO_ERROR;
}
- virtual int32_t NPP_WriteReady(NPStream* stream) OVERRIDE
+ virtual int32_t NPP_WriteReady(NPStream* stream) override
{
if (stream->pdata != this)
m_didFail = true;
@@ -104,7 +104,7 @@ private:
return 2;
}
- virtual int32_t NPP_Write(NPStream* stream, int32_t offset, int32_t len, void* buffer) OVERRIDE
+ virtual int32_t NPP_Write(NPStream* stream, int32_t offset, int32_t len, void* buffer) override
{
if (stream->pdata != this)
m_didFail = true;

Powered by Google App Engine
This is Rietveld 408576698