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

Unified Diff: ppapi/proxy/ppb_flash_proxy.cc

Issue 10736039: Re-enabled PPAPI crash url for non-windows platforms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_flash_proxy.cc
diff --git a/ppapi/proxy/ppb_flash_proxy.cc b/ppapi/proxy/ppb_flash_proxy.cc
index 0badfe7bcbb2739f8f7321a144c1486610f5ec6b..b2857cd96e737a75e4591c22de0232106ff33c6d 100644
--- a/ppapi/proxy/ppb_flash_proxy.cc
+++ b/ppapi/proxy/ppb_flash_proxy.cc
@@ -312,10 +312,12 @@ PP_Bool PPB_Flash_Proxy::SetCrashData(PP_Instance instance,
PP_Var value) {
switch (key) {
case PP_FLASHCRASHKEY_URL:
- // TODO(raymes): This may be breaking crash reporting, see:
+#if defined(OS_WIN)
+ // TODO(raymes): This may be breaking crash reporting on Windows, see:
// See https://code.google.com/p/chromium/issues/detail?id=135480.
// Disable temporarily.
return PP_FALSE;
+#endif
yzshen1 2012/07/11 18:22:56 nit: it is better to use a #else to wrap code for
StringVar *url_string_var(StringVar::FromPPVar(value));
if (!url_string_var)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698