| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/tabs/tab_strip_model_observer.h" | 5 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |
| 6 | 6 |
| 7 using content::WebContents; | 7 using content::WebContents; |
| 8 | 8 |
| 9 void TabStripModelObserver::TabInsertedAt(WebContents* contents, | 9 void TabStripModelObserver::TabInsertedAt(WebContents* contents, |
| 10 int index, | 10 int index, |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 int index) { | 58 int index) { |
| 59 } | 59 } |
| 60 | 60 |
| 61 void TabStripModelObserver::TabBlockedStateChanged(WebContents* contents, | 61 void TabStripModelObserver::TabBlockedStateChanged(WebContents* contents, |
| 62 int index) { | 62 int index) { |
| 63 } | 63 } |
| 64 | 64 |
| 65 void TabStripModelObserver::TabStripEmpty() {} | 65 void TabStripModelObserver::TabStripEmpty() {} |
| 66 | 66 |
| 67 void TabStripModelObserver::TabStripModelDeleted() {} | 67 void TabStripModelObserver::TabStripModelDeleted() {} |
| 68 |
| 69 void TabStripModelObserver::TabZoomChange(content::WebContents* contents, |
| 70 double old_zoom_level, |
| 71 double new_zoom_level, |
| 72 content::ZoomMode zoom_mode) {} |
| OLD | NEW |