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

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

Issue 11778097: Revert revision 176015 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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
===================================================================
--- chrome/browser/extensions/api/record/record_api.h (revision 176052)
+++ chrome/browser/extensions/api/record/record_api.h (working copy)
@@ -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 @@
scoped_ptr<ProcessStrategy> process_strategy_;
};
-class RecordCaptureURLsFunction : public RunPageCyclerFunction {
+class CaptureURLsFunction : public RunPageCyclerFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("experimental.record.captureURLs");
- RecordCaptureURLsFunction();
- explicit RecordCaptureURLsFunction(ProcessStrategy* strategy);
+ CaptureURLsFunction();
+ explicit CaptureURLsFunction(ProcessStrategy* strategy);
private:
- virtual ~RecordCaptureURLsFunction() {}
+ virtual ~CaptureURLsFunction() {}
// Read the ReplayDetails parameter if it exists.
virtual bool ParseJSParameters() OVERRIDE;
@@ -125,15 +125,15 @@
virtual void Finish() OVERRIDE;
};
-class RecordReplayURLsFunction : public RunPageCyclerFunction {
+class ReplayURLsFunction : public RunPageCyclerFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("experimental.record.replayURLs");
- RecordReplayURLsFunction();
- explicit RecordReplayURLsFunction(ProcessStrategy* strategy);
+ ReplayURLsFunction();
+ explicit ReplayURLsFunction(ProcessStrategy* strategy);
private:
- virtual ~RecordReplayURLsFunction();
+ virtual ~ReplayURLsFunction();
// 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