1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // A class to hold the parameters we get back from the
6 // ViewHostMsg_DomOperationResponse IPC call. This is used when passing
7 // parameters through the notification service.
9 #ifndef CONTENT_PUBLIC_BROWSER_DOM_OPERATION_NOTIFICATION_DETAILS_H_
10 #define CONTENT_PUBLIC_BROWSER_DOM_OPERATION_NOTIFICATION_DETAILS_H_
14 struct DomOperationNotificationDetails
{
16 DomOperationNotificationDetails(const std::string
& json
, int automation_id
)
17 : json(json
), automation_id(automation_id
) { }
23 } // namespace content
25 #endif // CONTENT_PUBLIC_BROWSER_DOM_OPERATION_NOTIFICATION_DETAILS_H_