Skip to content

Commit

Permalink
Remove spurious error message (flutter#4135)
Browse files Browse the repository at this point in the history
It's not an error to be unable to connect to the context service.
  • Loading branch information
abarth authored Sep 25, 2017
1 parent 77ec0b5 commit ccce4c3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions content_handler/accessibility_bridge.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@
namespace flutter_runner {

AccessibilityBridge::AccessibilityBridge(app::ApplicationContext* context)
: writer_(context->ConnectToEnvironmentService<maxwell::ContextWriter>()) {
writer_.set_connection_error_handler(
[] { FXL_LOG(ERROR) << "Error connecting to ContextWriter."; });
}
: writer_(context->ConnectToEnvironmentService<maxwell::ContextWriter>()) {}

void AccessibilityBridge::UpdateSemantics(
const std::vector<blink::SemanticsNode>& update) {
Expand Down

0 comments on commit ccce4c3

Please sign in to comment.