summaryrefslogtreecommitdiffstats
path: root/chrome/browser/automation/automation_provider_json.h
diff options
context:
space:
mode:
authortyoshino@chromium.org <tyoshino@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-16 09:57:58 +0000
committertyoshino@chromium.org <tyoshino@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-16 09:57:58 +0000
commit1ac875d29da54823e8070bb64457aa542f8cd30b (patch)
tree85c1ca275d55885f86001dcdffa53e4dabe98e37 /chrome/browser/automation/automation_provider_json.h
parenta4219b283fd202372e82ac3d9f167b83629cfbfa (diff)
downloadchromium_src-1ac875d29da54823e8070bb64457aa542f8cd30b.zip
chromium_src-1ac875d29da54823e8070bb64457aa542f8cd30b.tar.gz
chromium_src-1ac875d29da54823e8070bb64457aa542f8cd30b.tar.bz2
Revert 52628 - Refactor json automation interface for pyauto hooks.
Reduces the number of lines you need to add per new automation hook. Shaves off several lines of code. Refactor pyauto.py to obviate raising exception in case the json interfaces produces an error string. Reason: since startup_test of XP Perf and Vista Perf failed around this change and this change touched automated test Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=52054 Review URL: http://codereview.chromium.org/2898001 TBR=nirnimesh@chromium.org Review URL: http://codereview.chromium.org/2812057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52640 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/automation_provider_json.h')
-rw-r--r--chrome/browser/automation/automation_provider_json.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/chrome/browser/automation/automation_provider_json.h b/chrome/browser/automation/automation_provider_json.h
deleted file mode 100644
index a203c58..0000000
--- a/chrome/browser/automation/automation_provider_json.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright (c) 2010 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.
-
-// Support utilities for the JSON automation interface used by PyAuto.
-
-#ifndef CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_JSON_H_
-#define CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_JSON_H_
-
-#include <string>
-
-#include "base/values.h"
-#include "ipc/ipc_message.h"
-#include "chrome/browser/automation/automation_provider.h"
-
-// Helper to ensure we always send a reply message for JSON automation requests.
-class AutomationJSONReply {
- public:
- // Creates a new reply object for the IPC message |reply_message| for
- // |provider|. The caller is expected to call SendSuccess() or SendError()
- // before destroying this object.
- AutomationJSONReply(AutomationProvider* provider,
- IPC::Message* reply_message);
-
- ~AutomationJSONReply();
-
- // Send a success reply along with data contained in |value|.
- // An empty message will be sent if |value| is NULL.
- void SendSuccess(const Value* value);
-
- // Send an error reply along with error message |error_message|.
- void SendError(const std::string& error_message);
-
- private:
- AutomationProvider* provider_;
- IPC::Message* message_;
-};
-
-#endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_JSON_H_
-