OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-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 #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 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/gfx/native_widget_types.h" | 12 #include "app/gfx/native_widget_types.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "base/timer.h" | 14 #include "base/timer.h" |
15 #include "build/build_config.h" | 15 #include "build/build_config.h" |
16 #include "chrome/browser/browser.h" | 16 #include "chrome/browser/browser.h" |
17 #include "chrome/browser/browser_window.h" | 17 #include "chrome/browser/browser_window.h" |
18 #if defined(OS_WIN) | 18 #if defined(OS_WIN) |
19 #include "chrome/browser/hang_monitor/hung_plugin_action.h" | 19 #include "chrome/browser/hang_monitor/hung_plugin_action.h" |
20 #include "chrome/browser/hang_monitor/hung_window_detector.h" | 20 #include "chrome/browser/hang_monitor/hung_window_detector.h" |
21 #endif | 21 #endif |
22 #include "chrome/browser/tabs/tab_strip_model.h" | 22 #include "chrome/browser/tabs/tab_strip_model.h" |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 typedef std::set<BrowserBubble*> BubbleSet; | 508 typedef std::set<BrowserBubble*> BubbleSet; |
509 BubbleSet browser_bubbles_; | 509 BubbleSet browser_bubbles_; |
510 | 510 |
511 // The accessible name of this view. | 511 // The accessible name of this view. |
512 std::wstring accessible_name_; | 512 std::wstring accessible_name_; |
513 | 513 |
514 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 514 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
515 }; | 515 }; |
516 | 516 |
517 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ | 517 #endif // CHROME_BROWSER_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |