| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_ | 5 #ifndef CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_ |
| 6 #define CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_ | 6 #define CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "gin/wrappable.h" | 9 #include "gin/wrappable.h" |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 static gin::WrapperInfo kWrapperInfo; | 24 static gin::WrapperInfo kWrapperInfo; |
| 25 | 25 |
| 26 static void Install(blink::WebFrame* frame); | 26 static void Install(blink::WebFrame* frame); |
| 27 | 27 |
| 28 private: | 28 private: |
| 29 StatsCollectionController(); | 29 StatsCollectionController(); |
| 30 virtual ~StatsCollectionController(); | 30 virtual ~StatsCollectionController(); |
| 31 | 31 |
| 32 // gin::WrappableBase | 32 // gin::WrappableBase |
| 33 virtual gin::ObjectTemplateBuilder GetObjectTemplateBuilder( | 33 virtual gin::ObjectTemplateBuilder GetObjectTemplateBuilder( |
| 34 v8::Isolate* isolate) OVERRIDE; | 34 v8::Isolate* isolate) override; |
| 35 | 35 |
| 36 // Retrieves a histogram and returns a JSON representation of it. | 36 // Retrieves a histogram and returns a JSON representation of it. |
| 37 std::string GetHistogram(const std::string& histogram_name); | 37 std::string GetHistogram(const std::string& histogram_name); |
| 38 | 38 |
| 39 // Retrieves a histogram from the browser process and returns a JSON | 39 // Retrieves a histogram from the browser process and returns a JSON |
| 40 // representation of it. | 40 // representation of it. |
| 41 std::string GetBrowserHistogram(const std::string& histogram_name); | 41 std::string GetBrowserHistogram(const std::string& histogram_name); |
| 42 | 42 |
| 43 // Returns JSON representation of tab timing information for the current tab. | 43 // Returns JSON representation of tab timing information for the current tab. |
| 44 std::string GetTabLoadTiming(); | 44 std::string GetTabLoadTiming(); |
| 45 | 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(StatsCollectionController); | 46 DISALLOW_COPY_AND_ASSIGN(StatsCollectionController); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace content | 49 } // namespace content |
| 50 | 50 |
| 51 #endif // CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_ | 51 #endif // CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_ |
| OLD | NEW |