feat: Update Automation Bridge with AgentChatWidget Integration

- Added includes for AgentChatWidget and TestManager in automation_bridge.cc and automation_bridge.h to facilitate communication between components.
- Introduced forward declaration for AgentChatWidget in automation_bridge.h to improve code organization and clarity.
- Updated test_manager.h to include necessary definitions for improved functionality.
This commit is contained in:
scawful
2025-10-05 14:27:05 -04:00
parent 1870ebad50
commit 9c8cdb677b
3 changed files with 13 additions and 1 deletions

View File

@@ -3,6 +3,8 @@
#if defined(YAZE_WITH_GRPC)
#include "absl/time/time.h"
#include "app/editor/agent/agent_chat_widget.h"
#include "app/test/test_manager.h"
namespace yaze {
namespace editor {

View File

@@ -3,10 +3,17 @@
#if defined(YAZE_WITH_GRPC)
#include <string>
#include "absl/synchronization/mutex.h"
#include "app/editor/agent/agent_chat_widget.h"
#include "app/test/test_manager.h"
namespace yaze {
namespace editor {
class AgentChatWidget;
} // namespace editor
} // namespace yaze
namespace yaze {
namespace editor {