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

Side by Side Diff: content/renderer/stats_collection_controller.h

Issue 118423004: Add support for wrapping classes indirectly inherited from gin::Wrappable<T> (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update StatsCollectionController Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/renderer/stats_collection_controller.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 namespace blink { 11 namespace blink {
12 class WebFrame; 12 class WebFrame;
13 } 13 }
14 14
15 namespace content { 15 namespace content {
16 16
17 // This class is exposed in JS as window.statsCollectionController and provides 17 // This class is exposed in JS as window.statsCollectionController and provides
18 // functionality to read out statistics from the browser. 18 // functionality to read out statistics from the browser.
19 // Its use must be enabled specifically via the 19 // Its use must be enabled specifically via the
20 // --enable-stats-collection-bindings command line flag. 20 // --enable-stats-collection-bindings command line flag.
21 class StatsCollectionController 21 class StatsCollectionController
22 : public gin::Wrappable<StatsCollectionController> { 22 : public gin::Wrappable<StatsCollectionController> {
23 public: 23 public:
24 static gin::WrapperInfo kWrapperInfo; 24 static gin::WrapperInfo kWrapperInfo;
25 static v8::Local<v8::ObjectTemplate> GetObjectTemplate(v8::Isolate* isolate);
26 25
27 static void Install(blink::WebFrame* frame); 26 static void Install(blink::WebFrame* frame);
28 27
29 private: 28 private:
30 StatsCollectionController(); 29 StatsCollectionController();
31 virtual ~StatsCollectionController(); 30 virtual ~StatsCollectionController();
32 31
32 // gin::WrappableBase
33 virtual gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
34 v8::Isolate* isolate) OVERRIDE;
35
33 // Retrieves a histogram and returns a JSON representation of it. 36 // Retrieves a histogram and returns a JSON representation of it.
34 std::string GetHistogram(const std::string& histogram_name); 37 std::string GetHistogram(const std::string& histogram_name);
35 38
36 // Retrieves a histogram from the browser process and returns a JSON 39 // Retrieves a histogram from the browser process and returns a JSON
37 // representation of it. 40 // representation of it.
38 std::string GetBrowserHistogram(const std::string& histogram_name); 41 std::string GetBrowserHistogram(const std::string& histogram_name);
39 42
40 // Returns JSON representation of tab timing information for the current tab. 43 // Returns JSON representation of tab timing information for the current tab.
41 std::string GetTabLoadTiming(); 44 std::string GetTabLoadTiming();
42 45
43 DISALLOW_COPY_AND_ASSIGN(StatsCollectionController); 46 DISALLOW_COPY_AND_ASSIGN(StatsCollectionController);
44 }; 47 };
45 48
46 } // namespace content 49 } // namespace content
47 50
48 #endif // CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_ 51 #endif // CONTENT_RENDERER_STATS_COLLECTION_CONTROLLER_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/stats_collection_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698