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

Side by Side Diff: chrome/common/extensions/api/api.gyp

Issue 10827390: Implement chrome.socket.bind/listen/accept for TCP server socket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add error if trying to bind TCP socket, remove TCP client socket bind. Created 8 years, 3 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'api', 8 'target_name': 'api',
9 'type': 'static_library', 9 'type': 'static_library',
10 'sources': [ 10 'sources': [
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'app_runtime.idl', 44 'app_runtime.idl',
45 'app_window.idl', 45 'app_window.idl',
46 'downloads.idl', 46 'downloads.idl',
47 'experimental_bluetooth.idl', 47 'experimental_bluetooth.idl',
48 'experimental_discovery.idl', 48 'experimental_discovery.idl',
49 'experimental_dns.idl', 49 'experimental_dns.idl',
50 'experimental_identity.idl', 50 'experimental_identity.idl',
51 'experimental_idltest.idl', 51 'experimental_idltest.idl',
52 'experimental_media_galleries.idl', 52 'experimental_media_galleries.idl',
53 'experimental_push_messaging.idl', 53 'experimental_push_messaging.idl',
54 'experimental_socket.idl',
miket_OOO 2012/09/24 18:14:21 Remove (see other comments).
54 'experimental_system_info_cpu.idl', 55 'experimental_system_info_cpu.idl',
55 'experimental_system_info_storage.idl', 56 'experimental_system_info_storage.idl',
56 'experimental_usb.idl', 57 'experimental_usb.idl',
57 'file_system.idl', 58 'file_system.idl',
58 'media_galleries.idl', 59 'media_galleries.idl',
59 'media_galleries_private.idl', 60 'media_galleries_private.idl',
60 'rtc_private.idl', 61 'rtc_private.idl',
61 'serial.idl', 62 'serial.idl',
62 'socket.idl', 63 'socket.idl',
63 ], 64 ],
(...skipping 11 matching lines...) Expand all
75 'file_browser_handler_internal.json', 76 'file_browser_handler_internal.json',
76 ], 77 ],
77 'idl_schema_files!': [ 78 'idl_schema_files!': [
78 'rtc_private.idl', 79 'rtc_private.idl',
79 ], 80 ],
80 }], 81 }],
81 ], 82 ],
82 }, 83 },
83 ], 84 ],
84 } 85 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698