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

Unified Diff: Source/core/page/PagePopupController.cpp

Issue 44453002: Remove HistogramSupport abstraction layer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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 | « Source/core/html/parser/HTMLResourcePreloader.cpp ('k') | Source/core/page/UseCounter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/PagePopupController.cpp
diff --git a/Source/core/page/PagePopupController.cpp b/Source/core/page/PagePopupController.cpp
index 8950000cbc00859b2637f8bd59392460e9736796..ba31b0260f2f37fc643df4f0704e577b0733dc47 100644
--- a/Source/core/page/PagePopupController.cpp
+++ b/Source/core/page/PagePopupController.cpp
@@ -32,8 +32,8 @@
#include "core/page/PagePopupController.h"
#include "core/page/PagePopupClient.h"
-#include "core/platform/HistogramSupport.h"
#include "platform/text/PlatformLocale.h"
+#include "public/platform/Platform.h"
namespace WebCore {
@@ -101,7 +101,7 @@ void PagePopupController::clearPagePopupClient()
void PagePopupController::histogramEnumeration(const String& name, int sample, int boundaryValue)
{
- HistogramSupport::histogramEnumeration(name.utf8().data(), sample, boundaryValue);
+ WebKit::Platform::current()->histogramEnumeration(name.utf8().data(), sample, boundaryValue);
}
}
« no previous file with comments | « Source/core/html/parser/HTMLResourcePreloader.cpp ('k') | Source/core/page/UseCounter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698