- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / all_urls / execute_script / execute_script.js
1 /*
2  * Copyright (c) 2010 The Chromium Authors. All rights reserved.  Use of this
3  * source code is governed by a BSD-style license that can be found in the
4  * LICENSE file.
5  */
6
7 // Let the background page know this content script executed.
8 chrome.extension.sendRequest({greeting: "hello"}, function(response) {
9   console.log(response.farewell);
10 });