| OLD | NEW |
| 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 #include "chrome/browser/ui/panels/panel_browser_window_cocoa.h" | 5 #include "chrome/browser/ui/panels/panel_browser_window_cocoa.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "chrome/browser/ui/panels/panel.h" | 8 #include "chrome/browser/ui/panels/panel.h" |
| 9 #include "chrome/browser/ui/panels/panel_window_controller_cocoa.h" | 9 #include "chrome/browser/ui/panels/panel_window_controller_cocoa.h" |
| 10 | 10 |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 } | 326 } |
| 327 | 327 |
| 328 void PanelBrowserWindowCocoa::Paste() { | 328 void PanelBrowserWindowCocoa::Paste() { |
| 329 NOTIMPLEMENTED(); | 329 NOTIMPLEMENTED(); |
| 330 } | 330 } |
| 331 | 331 |
| 332 void PanelBrowserWindowCocoa::ToggleTabStripMode() { | 332 void PanelBrowserWindowCocoa::ToggleTabStripMode() { |
| 333 NOTIMPLEMENTED(); | 333 NOTIMPLEMENTED(); |
| 334 } | 334 } |
| 335 | 335 |
| 336 void PanelBrowserWindowCocoa::ToggleUseCompactNavigationBar() { |
| 337 NOTIMPLEMENTED(); |
| 338 } |
| 339 |
| 336 #if defined(OS_MACOSX) | 340 #if defined(OS_MACOSX) |
| 337 void PanelBrowserWindowCocoa::OpenTabpose() { | 341 void PanelBrowserWindowCocoa::OpenTabpose() { |
| 338 NOTIMPLEMENTED(); | 342 NOTIMPLEMENTED(); |
| 339 } | 343 } |
| 340 #endif | 344 #endif |
| 341 | 345 |
| 342 void PanelBrowserWindowCocoa::PrepareForInstant() { | 346 void PanelBrowserWindowCocoa::PrepareForInstant() { |
| 343 NOTIMPLEMENTED(); | 347 NOTIMPLEMENTED(); |
| 344 } | 348 } |
| 345 | 349 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 357 } | 361 } |
| 358 | 362 |
| 359 WindowOpenDisposition PanelBrowserWindowCocoa::GetDispositionForPopupBounds( | 363 WindowOpenDisposition PanelBrowserWindowCocoa::GetDispositionForPopupBounds( |
| 360 const gfx::Rect& bounds) { | 364 const gfx::Rect& bounds) { |
| 361 NOTIMPLEMENTED(); | 365 NOTIMPLEMENTED(); |
| 362 return NEW_POPUP; | 366 return NEW_POPUP; |
| 363 } | 367 } |
| 364 | 368 |
| 365 void PanelBrowserWindowCocoa::DestroyBrowser() { | 369 void PanelBrowserWindowCocoa::DestroyBrowser() { |
| 366 } | 370 } |
| OLD | NEW |