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

Unified Diff: chrome/browser/resources/sync_internals/chrome_sync.js

Issue 9836100: Add full text regex searching to chrome://sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/sync_internals/sync_search.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/sync_internals/chrome_sync.js
diff --git a/chrome/browser/resources/sync_internals/chrome_sync.js b/chrome/browser/resources/sync_internals/chrome_sync.js
index f300ffa60023a64264f4a88fa974151b80251e20..6e47e5f048675c11799f6ed028e3d3031756b8d3 100644
--- a/chrome/browser/resources/sync_internals/chrome_sync.js
+++ b/chrome/browser/resources/sync_internals/chrome_sync.js
@@ -3,10 +3,17 @@
// found in the LICENSE file.
var chrome = chrome || {};
+
// TODO(akalin): Add mocking code for e.g. chrome.send() so that we
// can test this without rebuilding chrome.
+
+/**
+ * Organize sync event listeners and asynchronous requests.
+ * This object is one of a kind; its constructor is not public.
+ * @type {Object}
+ */
chrome.sync = chrome.sync || {};
-(function () {
+(function() {
// This Event class is a simplified version of the one from
// event_bindings.js.
@@ -145,7 +152,7 @@ var syncFunctions = [
'getNodeSummariesById',
'getNodeDetailsById',
'getChildNodeIds',
- 'findNodesContainingString'
+ 'getAllNodes',
];
for (var i = 0; i < syncFunctions.length; ++i) {
« no previous file with comments | « no previous file | chrome/browser/resources/sync_internals/sync_search.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698