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

Side by Side Diff: chrome/browser/cocoa/browser_window_cocoa.mm

Issue 140044: Reorganize the way the task manager is constructed.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 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
« no previous file with comments | « chrome/browser/cocoa/browser_window_cocoa.h ('k') | chrome/browser/gtk/browser_window_gtk.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #include "base/gfx/rect.h" 5 #include "base/gfx/rect.h"
6 #include "base/logging.h" 6 #include "base/logging.h"
7 #include "base/sys_string_conversions.h" 7 #include "base/sys_string_conversions.h"
8 #include "chrome/browser/bookmarks/bookmark_utils.h" 8 #include "chrome/browser/bookmarks/bookmark_utils.h"
9 #include "chrome/browser/cocoa/browser_window_cocoa.h" 9 #include "chrome/browser/cocoa/browser_window_cocoa.h"
10 #import "chrome/browser/cocoa/browser_window_controller.h" 10 #import "chrome/browser/cocoa/browser_window_controller.h"
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 172
173 void BrowserWindowCocoa::AddFindBar( 173 void BrowserWindowCocoa::AddFindBar(
174 FindBarCocoaController* find_bar_cocoa_controller) { 174 FindBarCocoaController* find_bar_cocoa_controller) {
175 return [controller_ addFindBar:find_bar_cocoa_controller]; 175 return [controller_ addFindBar:find_bar_cocoa_controller];
176 } 176 }
177 177
178 void BrowserWindowCocoa::ShowAboutChromeDialog() { 178 void BrowserWindowCocoa::ShowAboutChromeDialog() {
179 NOTIMPLEMENTED(); 179 NOTIMPLEMENTED();
180 } 180 }
181 181
182 void BrowserWindowCocoa::ShowTaskManager() {
183 NOTIMPLEMENTED();
184 }
185
182 void BrowserWindowCocoa::ShowBookmarkManager() { 186 void BrowserWindowCocoa::ShowBookmarkManager() {
183 NOTIMPLEMENTED(); 187 NOTIMPLEMENTED();
184 } 188 }
185 189
186 void BrowserWindowCocoa::ShowBookmarkBubble(const GURL& url, 190 void BrowserWindowCocoa::ShowBookmarkBubble(const GURL& url,
187 bool already_bookmarked) { 191 bool already_bookmarked) {
188 NOTIMPLEMENTED(); 192 NOTIMPLEMENTED();
189 } 193 }
190 194
191 bool BrowserWindowCocoa::IsDownloadShelfVisible() const { 195 bool BrowserWindowCocoa::IsDownloadShelfVisible() const {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 break; 269 break;
266 } 270 }
267 } 271 }
268 272
269 void BrowserWindowCocoa::DestroyBrowser() { 273 void BrowserWindowCocoa::DestroyBrowser() {
270 [controller_ destroyBrowser]; 274 [controller_ destroyBrowser];
271 275
272 // at this point the controller is dead (autoreleased), so 276 // at this point the controller is dead (autoreleased), so
273 // make sure we don't try to reference it any more. 277 // make sure we don't try to reference it any more.
274 } 278 }
OLDNEW
« no previous file with comments | « chrome/browser/cocoa/browser_window_cocoa.h ('k') | chrome/browser/gtk/browser_window_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698