| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | |
| 11 #include <string> | 10 #include <string> |
| 12 #include <vector> | 11 #include <vector> |
| 13 | 12 |
| 14 #include "app/menus/simple_menu_model.h" | 13 #include "app/menus/simple_menu_model.h" |
| 15 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
| 16 #include "base/timer.h" | 15 #include "base/timer.h" |
| 17 #include "build/build_config.h" | 16 #include "build/build_config.h" |
| 18 #include "chrome/browser/browser.h" | 17 #include "chrome/browser/browser.h" |
| 19 #include "chrome/browser/browser_window.h" | 18 #include "chrome/browser/browser_window.h" |
| 20 #include "chrome/browser/tabs/tab_strip_model.h" | 19 #include "chrome/browser/tabs/tab_strip_model.h" |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 589 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; | 588 UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; |
| 590 | 589 |
| 591 scoped_ptr<AccessibleViewHelper> accessible_view_helper_; | 590 scoped_ptr<AccessibleViewHelper> accessible_view_helper_; |
| 592 | 591 |
| 593 NotificationRegistrar registrar_; | 592 NotificationRegistrar registrar_; |
| 594 | 593 |
| 595 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 594 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 596 }; | 595 }; |
| 597 | 596 |
| 598 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 597 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |