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

Side by Side Diff: chrome/browser/ui/cocoa/applescript/browsercrapplication+applescript.mm

Issue 10391158: Moves methods for finding browsers to browser_finder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Include fixs Created 8 years, 7 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #import "chrome/browser/ui/cocoa/applescript/browsercrapplication+applescript.h" 5 #import "chrome/browser/ui/cocoa/applescript/browsercrapplication+applescript.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #import "base/memory/scoped_nsobject.h" 8 #import "base/memory/scoped_nsobject.h"
9 #import "chrome/browser/app_controller_mac.h" 9 #import "chrome/browser/app_controller_mac.h"
10 #include "chrome/browser/bookmarks/bookmark_model.h" 10 #include "chrome/browser/bookmarks/bookmark_model.h"
11 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/browser/ui/browser.h"
12 #include "chrome/browser/ui/browser_list.h" 13 #include "chrome/browser/ui/browser_list.h"
13 #import "chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript.h" 14 #import "chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript.h"
14 #import "chrome/browser/ui/cocoa/applescript/constants_applescript.h" 15 #import "chrome/browser/ui/cocoa/applescript/constants_applescript.h"
15 #import "chrome/browser/ui/cocoa/applescript/error_applescript.h" 16 #import "chrome/browser/ui/cocoa/applescript/error_applescript.h"
16 #import "chrome/browser/ui/cocoa/applescript/window_applescript.h" 17 #import "chrome/browser/ui/cocoa/applescript/window_applescript.h"
17 18
18 @implementation BrowserCrApplication (AppleScriptAdditions) 19 @implementation BrowserCrApplication (AppleScriptAdditions)
19 20
20 - (NSArray*)appleScriptWindows { 21 - (NSArray*)appleScriptWindows {
21 NSMutableArray* appleScriptWindows = [NSMutableArray 22 NSMutableArray* appleScriptWindows = [NSMutableArray
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 128
128 - (void)insertInBookmarksFolders:(id)aBookmarkFolder atIndex:(int)index { 129 - (void)insertInBookmarksFolders:(id)aBookmarkFolder atIndex:(int)index {
129 NOTIMPLEMENTED(); 130 NOTIMPLEMENTED();
130 } 131 }
131 132
132 - (void)removeFromBookmarksFoldersAtIndex:(int)index { 133 - (void)removeFromBookmarksFoldersAtIndex:(int)index {
133 NOTIMPLEMENTED(); 134 NOTIMPLEMENTED();
134 } 135 }
135 136
136 @end 137 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698