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

Side by Side Diff: chrome/browser/ui/views/frame/browser_view.h

Issue 10253009: views: Remove unused native_menu_win.h include from browser_view.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | « no previous file | no next file » | 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) 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 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 14 matching lines...) Expand all
25 #include "ui/base/models/simple_menu_model.h" 25 #include "ui/base/models/simple_menu_model.h"
26 #include "ui/gfx/sys_color_change_listener.h" 26 #include "ui/gfx/sys_color_change_listener.h"
27 #include "ui/gfx/native_widget_types.h" 27 #include "ui/gfx/native_widget_types.h"
28 #include "ui/views/controls/single_split_view_listener.h" 28 #include "ui/views/controls/single_split_view_listener.h"
29 #include "ui/views/widget/widget_delegate.h" 29 #include "ui/views/widget/widget_delegate.h"
30 #include "ui/views/window/client_view.h" 30 #include "ui/views/window/client_view.h"
31 31
32 #if defined(OS_WIN) 32 #if defined(OS_WIN)
33 #include "chrome/browser/hang_monitor/hung_plugin_action.h" 33 #include "chrome/browser/hang_monitor/hung_plugin_action.h"
34 #include "chrome/browser/hang_monitor/hung_window_detector.h" 34 #include "chrome/browser/hang_monitor/hung_window_detector.h"
35 #include "ui/views/controls/menu/native_menu_win.h"
36 #endif 35 #endif
37 36
38 // NOTE: For more information about the objects and files in this directory, 37 // NOTE: For more information about the objects and files in this directory,
39 // view: http://dev.chromium.org/developers/design-documents/browser-window 38 // view: http://dev.chromium.org/developers/design-documents/browser-window
40 39
41 class BookmarkBarView; 40 class BookmarkBarView;
42 class Browser; 41 class Browser;
43 class BrowserViewLayout; 42 class BrowserViewLayout;
44 class ContentsContainer; 43 class ContentsContainer;
45 class DownloadShelfView; 44 class DownloadShelfView;
(...skipping 10 matching lines...) Expand all
56 class JumpList; 55 class JumpList;
57 #endif 56 #endif
58 57
59 #if defined(USE_AURA) 58 #if defined(USE_AURA)
60 class LauncherUpdater; 59 class LauncherUpdater;
61 #endif 60 #endif
62 61
63 namespace views { 62 namespace views {
64 class AccessiblePaneView; 63 class AccessiblePaneView;
65 class ExternalFocusTracker; 64 class ExternalFocusTracker;
66 class Menu;
67 class WebView; 65 class WebView;
68 } 66 }
69 67
70 /////////////////////////////////////////////////////////////////////////////// 68 ///////////////////////////////////////////////////////////////////////////////
71 // BrowserView 69 // BrowserView
72 // 70 //
73 // A ClientView subclass that provides the contents of a browser window, 71 // A ClientView subclass that provides the contents of a browser window,
74 // including the TabStrip, toolbars, download shelves, the content area etc. 72 // including the TabStrip, toolbars, download shelves, the content area etc.
75 // 73 //
76 class BrowserView : public BrowserWindow, 74 class BrowserView : public BrowserWindow,
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 bool force_location_bar_focus_; 676 bool force_location_bar_focus_;
679 677
680 PendingFullscreenRequest fullscreen_request_; 678 PendingFullscreenRequest fullscreen_request_;
681 679
682 gfx::ScopedSysColorChangeListener color_change_listener_; 680 gfx::ScopedSysColorChangeListener color_change_listener_;
683 681
684 DISALLOW_COPY_AND_ASSIGN(BrowserView); 682 DISALLOW_COPY_AND_ASSIGN(BrowserView);
685 }; 683 };
686 684
687 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 685 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698