Skip to content

Commit

Permalink
Fix compile issue, missing override.
Browse files Browse the repository at this point in the history
[email protected]
BUG=none

Review URL: https://codereview.chromium.org/1444963003

Cr-Commit-Position: refs/heads/master@{#359783}
(cherry picked from commit f20a5c5)

Review URL: https://codereview.chromium.org/1447913002 .

Cr-Commit-Position: refs/branch-heads/2564@{crosswalk-project#4}
Cr-Branched-From: 1283eca-refs/heads/master@{#359700}
  • Loading branch information
Tina Zhou committed Nov 15, 2015
1 parent 36903b2 commit 4d8599e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mojo/shell/application_manager_apptest_driver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ class TargetApplicationDelegate : public mojo::ApplicationDelegate,
#endif
target_ = base::LaunchProcess(child_command_line, options);
}
bool ConfigureIncomingConnection(mojo::ApplicationConnection* connection) {
bool ConfigureIncomingConnection(
mojo::ApplicationConnection* connection) override {
connection->AddService<Driver>(this);
return true;
}
Expand Down

0 comments on commit 4d8599e

Please sign in to comment.