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

Unified Diff: chrome/renderer/webplugin_delegate_pepper.h

Issue 2881014: Coverity: Fix missing const on WebPluginDelegatePepper::Device3DCreateContext override arg. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 5 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 | « no previous file | chrome/renderer/webplugin_delegate_pepper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/webplugin_delegate_pepper.h
diff --git a/chrome/renderer/webplugin_delegate_pepper.h b/chrome/renderer/webplugin_delegate_pepper.h
index bba574304eee30642fb77cc1e0bf2608003bda13..be9c1cebc2b03ff73dee6a1b52d242b646d1fade 100644
--- a/chrome/renderer/webplugin_delegate_pepper.h
+++ b/chrome/renderer/webplugin_delegate_pepper.h
@@ -148,7 +148,7 @@ class WebPluginDelegatePepper : public webkit_glue::WebPluginDelegate,
virtual NPError Device3DGetConfigAttribs(int32 config,
int32* attrib_list);
virtual NPError Device3DCreateContext(int32 config,
- int32* attrib_list,
+ const int32* attrib_list,
NPDeviceContext3D** context);
virtual NPError Device3DRegisterCallback(
NPP id,
« no previous file with comments | « no previous file | chrome/renderer/webplugin_delegate_pepper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698