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

Unified Diff: chrome/browser/extensions/api/record/record_api.h

Issue 11747025: Run the JSON Schema Compiler's bundle compilation on JSON files. Previously it (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix ms release build Created 7 years, 11 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
Index: chrome/browser/extensions/api/record/record_api.h
diff --git a/chrome/browser/extensions/api/record/record_api.h b/chrome/browser/extensions/api/record/record_api.h
index 4f5559aced970700a51937ab7c9b55303361d2aa..69974acf71eb7d31ca2dcb8900be60c6b50fdb74 100644
--- a/chrome/browser/extensions/api/record/record_api.h
+++ b/chrome/browser/extensions/api/record/record_api.h
@@ -5,10 +5,10 @@
#ifndef CHROME_BROWSER_EXTENSIONS_API_RECORD_RECORD_API_H_
#define CHROME_BROWSER_EXTENSIONS_API_RECORD_RECORD_API_H_
-#include "chrome/browser/extensions/extension_function.h"
#include "base/command_line.h"
#include "base/file_path.h"
#include "base/time.h"
+#include "chrome/browser/extensions/extension_function.h"
namespace {
@@ -105,15 +105,15 @@ class RunPageCyclerFunction : public AsyncExtensionFunction {
scoped_ptr<ProcessStrategy> process_strategy_;
};
-class CaptureURLsFunction : public RunPageCyclerFunction {
+class RecordCaptureURLsFunction : public RunPageCyclerFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("experimental.record.captureURLs");
- CaptureURLsFunction();
- explicit CaptureURLsFunction(ProcessStrategy* strategy);
+ RecordCaptureURLsFunction();
+ explicit RecordCaptureURLsFunction(ProcessStrategy* strategy);
private:
- virtual ~CaptureURLsFunction() {}
+ virtual ~RecordCaptureURLsFunction() {}
// Read the ReplayDetails parameter if it exists.
virtual bool ParseJSParameters() OVERRIDE;
@@ -125,15 +125,15 @@ class CaptureURLsFunction : public RunPageCyclerFunction {
virtual void Finish() OVERRIDE;
};
-class ReplayURLsFunction : public RunPageCyclerFunction {
+class RecordReplayURLsFunction : public RunPageCyclerFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("experimental.record.replayURLs");
- ReplayURLsFunction();
- explicit ReplayURLsFunction(ProcessStrategy* strategy);
+ RecordReplayURLsFunction();
+ explicit RecordReplayURLsFunction(ProcessStrategy* strategy);
private:
- virtual ~ReplayURLsFunction();
+ virtual ~RecordReplayURLsFunction();
// Read the ReplayDetails parameter if it exists.
virtual bool ParseJSParameters() OVERRIDE;
« no previous file with comments | « chrome/browser/extensions/api/processes/processes_api.cc ('k') | chrome/browser/extensions/api/record/record_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698