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

Unified Diff: components/html_viewer/stats_collection_controller.h

Issue 1677293002: Bye bye Mandoline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar Created 4 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 | « components/html_viewer/run_all_unittests.cc ('k') | components/html_viewer/stats_collection_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/html_viewer/stats_collection_controller.h
diff --git a/components/html_viewer/stats_collection_controller.h b/components/html_viewer/stats_collection_controller.h
deleted file mode 100644
index 69f0ab4337e4141f00ab3076b552fbc6a001d0a7..0000000000000000000000000000000000000000
--- a/components/html_viewer/stats_collection_controller.h
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright 2015 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.
-
-#ifndef COMPONENTS_HTML_VIEWER_STATS_COLLECTION_CONTROLLER_H_
-#define COMPONENTS_HTML_VIEWER_STATS_COLLECTION_CONTROLLER_H_
-
-#include "base/macros.h"
-#include "gin/wrappable.h"
-#include "mojo/services/tracing/public/interfaces/tracing.mojom.h"
-
-namespace blink {
-class WebFrame;
-}
-
-namespace mojo {
-class Shell;
-}
-
-namespace html_viewer {
-
-// This class is exposed in JS as window.statsCollectionController and provides
-// functionality to read out statistics from the browser.
-// Its use must be enabled specifically via the
-// --enable-stats-collection-bindings command line flag.
-class StatsCollectionController
- : public gin::Wrappable<StatsCollectionController> {
- public:
- static gin::WrapperInfo kWrapperInfo;
-
- // Install the JS and return a mojo:tracing InterfacePtr for stats reporting.
- // This bails and returns a null pointer without the stats command line flag.
- static tracing::StartupPerformanceDataCollectorPtr Install(
- blink::WebFrame* frame,
- mojo::Shell* shell);
-
- // Return a mojo:metrics InterfacePtr for stats reporting.
- // This bails and returns a null pointer without the stats command line flag.
- static tracing::StartupPerformanceDataCollectorPtr ConnectToDataCollector(
- mojo::Shell* shell);
-
- private:
- explicit StatsCollectionController(
- tracing::StartupPerformanceDataCollectorPtr collector);
- ~StatsCollectionController() override;
-
- // gin::WrappableBase
- gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
- v8::Isolate* isolate) override;
-
- // Retrieves a histogram and returns a JSON representation of it.
- std::string GetHistogram(const std::string& histogram_name);
-
- // Retrieves a browser histogram and returns a JSON representation of it.
- std::string GetBrowserHistogram(const std::string& histogram_name);
-
- tracing::StartupPerformanceDataCollectorPtr
- startup_performance_data_collector_;
-
- DISALLOW_COPY_AND_ASSIGN(StatsCollectionController);
-};
-
-} // namespace html_viewer
-
-#endif // COMPONENTS_HTML_VIEWER_STATS_COLLECTION_CONTROLLER_H_
« no previous file with comments | « components/html_viewer/run_all_unittests.cc ('k') | components/html_viewer/stats_collection_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698