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

Side by Side Diff: chrome/browser/cocoa/applescript/examples/delete_bookmarks.applescript

Issue 3180006: Cleaned up the SDEF... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 4 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
(Empty)
1 -- Copyright (c) 2010 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 -- This script deletes all the items within a bookmark folder.
6 tell application "Chromium"
7 set var to bookmark folder "New" of bookmarks bar
8 -- Change the folder to whichever you want.
9 tell var
10 delete every bookmark item
11 delete every bookmark folder
12 end tell
13 end tell
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698