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

Unified Diff: webkit/plugins/npapi/plugin_stream_url.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/glue/webmediaplayer_impl.h ('k') | webkit/plugins/npapi/test/plugin_arguments_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/plugin_stream_url.h
diff --git a/webkit/plugins/npapi/plugin_stream_url.h b/webkit/plugins/npapi/plugin_stream_url.h
index 312f8de65386924888f7b2baf74cb0a3040be24d..4bf5232230e7586f437fd0232b2853809d80e413 100644
--- a/webkit/plugins/npapi/plugin_stream_url.h
+++ b/webkit/plugins/npapi/plugin_stream_url.h
@@ -1,4 +1,4 @@
-// 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.
@@ -32,26 +32,28 @@ class PluginStreamUrl : public PluginStream,
// Stop sending the stream to the client.
// Overrides the base Close so we can cancel our fetching the URL if
// it is still loading.
- virtual bool Close(NPReason reason);
+ virtual bool Close(NPReason reason) OVERRIDE;
- virtual WebPluginResourceClient* AsResourceClient();
+ virtual WebPluginResourceClient* AsResourceClient() OVERRIDE;
- virtual void CancelRequest();
+ virtual void CancelRequest() OVERRIDE;
//
// WebPluginResourceClient methods
//
- virtual void WillSendRequest(const GURL& url, int http_status_code);
+ virtual void WillSendRequest(const GURL& url, int http_status_code) OVERRIDE;
virtual void DidReceiveResponse(const std::string& mime_type,
const std::string& headers,
uint32 expected_length,
uint32 last_modified,
- bool request_is_seekable);
- virtual void DidReceiveData(const char* buffer, int length, int data_offset);
- virtual void DidFinishLoading();
- virtual void DidFail();
- virtual bool IsMultiByteResponseExpected();
- virtual int ResourceId();
+ bool request_is_seekable) OVERRIDE;
+ virtual void DidReceiveData(const char* buffer,
+ int length,
+ int data_offset) OVERRIDE;
+ virtual void DidFinishLoading() OVERRIDE;
+ virtual void DidFail() OVERRIDE;
+ virtual bool IsMultiByteResponseExpected() OVERRIDE;
+ virtual int ResourceId() OVERRIDE;
private:
GURL url_;
« no previous file with comments | « webkit/glue/webmediaplayer_impl.h ('k') | webkit/plugins/npapi/test/plugin_arguments_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698