Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Side by Side Diff: chrome/test/data/extensions/api_test/native_bindings/content_script.js

Issue 2641863003: [Extensions Bindings] Add a messaging test (Closed)
Patch Set: . Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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.
4
5 chrome.runtime.onConnect.addListener((port) => {
6 port.onMessage.addListener((message) => {
7 chrome.test.assertEq('background page', message);
8 port.postMessage('content script');
9 });
10 });
11
12 chrome.runtime.sendMessage('startFlow', function(response) {
13 chrome.test.assertEq('started', response);
14 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698