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

Unified Diff: webkit/plugins/npapi/test/plugin_javascript_open_popup.h

Issue 8539047: Add OVERRIDE to webkit/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 years, 1 month 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 | « webkit/plugins/npapi/test/plugin_geturl_test.h ('k') | webkit/plugins/npapi/test/plugin_new_fails_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/test/plugin_javascript_open_popup.h
diff --git a/webkit/plugins/npapi/test/plugin_javascript_open_popup.h b/webkit/plugins/npapi/test/plugin_javascript_open_popup.h
index 6381d256ddb8eee1b0a399a77603dcc840e38822..b21cf27c6da8f6fdecc0a4d0d7df4765d0a96f0c 100644
--- a/webkit/plugins/npapi/test/plugin_javascript_open_popup.h
+++ b/webkit/plugins/npapi/test/plugin_javascript_open_popup.h
@@ -1,10 +1,11 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WEBKIT_PLUGINS_NPAPI_TEST_PLUGIN_JAVASCRIPT_OPEN_POPUP_H_
#define WEBKIT_PLUGINS_NPAPI_TEST_PLUGIN_JAVASCRIPT_OPEN_POPUP_H_
+#include "base/compiler_specific.h"
#include "webkit/plugins/npapi/test/plugin_test.h"
namespace NPAPIClient {
@@ -18,7 +19,7 @@ class ExecuteJavascriptOpenPopupWithPluginTest : public PluginTest {
ExecuteJavascriptOpenPopupWithPluginTest(
NPP id, NPNetscapeFuncs *host_functions);
// NPAPI SetWindow handler.
- virtual NPError SetWindow(NPWindow* window);
+ virtual NPError SetWindow(NPWindow* window) OVERRIDE;
private:
bool popup_window_test_started_;
@@ -31,7 +32,7 @@ class ExecuteJavascriptPopupWindowTargetPluginTest : public PluginTest {
ExecuteJavascriptPopupWindowTargetPluginTest(
NPP id, NPNetscapeFuncs *host_functions);
// NPAPI SetWindow handler.
- virtual NPError SetWindow(NPWindow* window);
+ virtual NPError SetWindow(NPWindow* window) OVERRIDE;
private:
// Do a platform-specific validation of the passed-in |window|.
« no previous file with comments | « webkit/plugins/npapi/test/plugin_geturl_test.h ('k') | webkit/plugins/npapi/test/plugin_new_fails_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698