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

Unified Diff: chrome/common/chrome_content_client_constants.cc

Issue 927483002: Fix the histograms whitelist for the OOP PDF plugin. (try 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix static initializer Created 5 years, 10 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 | « chrome/common/chrome_content_client.h ('k') | chrome/renderer/pepper/pepper_uma_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_content_client_constants.cc
diff --git a/chrome/common/chrome_content_client_constants.cc b/chrome/common/chrome_content_client_constants.cc
index f0a59f8782aab6a60e76165d3da3d2c7b942277e..29c0580415991ddf60abf27416e0dd3c5ee0abe6 100644
--- a/chrome/common/chrome_content_client_constants.cc
+++ b/chrome/common/chrome_content_client_constants.cc
@@ -5,11 +5,10 @@
#include "chrome/common/chrome_content_client.h"
#if defined(GOOGLE_CHROME_BUILD)
-const char* const ChromeContentClient::kPDFPluginName = "Chrome PDF Viewer";
+const char ChromeContentClient::kPDFPluginName[] = "Chrome PDF Viewer";
#else
-const char* const ChromeContentClient::kPDFPluginName = "Chromium PDF Viewer";
+const char ChromeContentClient::kPDFPluginName[] = "Chromium PDF Viewer";
#endif
-const char* const ChromeContentClient::kPDFPluginPath =
- "internal-pdf-viewer";
-const char* const ChromeContentClient::kRemotingViewerPluginPath =
+const char ChromeContentClient::kPDFPluginPath[] = "internal-pdf-viewer";
+const char ChromeContentClient::kRemotingViewerPluginPath[] =
"internal-remoting-viewer";
« no previous file with comments | « chrome/common/chrome_content_client.h ('k') | chrome/renderer/pepper/pepper_uma_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698