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

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

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 2 Created 8 years, 7 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
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 23 matching lines...) Expand all
34 #endif 34 #endif
35 35
36 // NOTE: For more information about the objects and files in this directory, 36 // NOTE: For more information about the objects and files in this directory,
37 // view: http://dev.chromium.org/developers/design-documents/browser-window 37 // view: http://dev.chromium.org/developers/design-documents/browser-window
38 38
39 class BookmarkBarView; 39 class BookmarkBarView;
40 class Browser; 40 class Browser;
41 class BrowserViewLayout; 41 class BrowserViewLayout;
42 class ContentsContainer; 42 class ContentsContainer;
43 class DownloadShelfView; 43 class DownloadShelfView;
44 class Extension;
45 class FullscreenExitBubbleViews; 44 class FullscreenExitBubbleViews;
46 class InfoBarContainerView; 45 class InfoBarContainerView;
47 class LocationBarView; 46 class LocationBarView;
48 class StatusBubbleViews; 47 class StatusBubbleViews;
49 class TabStrip; 48 class TabStrip;
50 class TabStripModel; 49 class TabStripModel;
51 class ToolbarView; 50 class ToolbarView;
52 51
53 #if defined(OS_WIN) 52 #if defined(OS_WIN)
54 class JumpList; 53 class JumpList;
55 #endif 54 #endif
56 55
57 #if defined(USE_AURA) 56 #if defined(USE_AURA)
58 class BrowserLauncherItemController; 57 class BrowserLauncherItemController;
59 #endif 58 #endif
60 59
60 namespace extensions {
61 class Extension;
62 }
63
61 namespace views { 64 namespace views {
62 class AccessiblePaneView; 65 class AccessiblePaneView;
63 class ExternalFocusTracker; 66 class ExternalFocusTracker;
64 class WebView; 67 class WebView;
65 } 68 }
66 69
67 /////////////////////////////////////////////////////////////////////////////// 70 ///////////////////////////////////////////////////////////////////////////////
68 // BrowserView 71 // BrowserView
69 // 72 //
70 // A ClientView subclass that provides the contents of a browser window, 73 // A ClientView subclass that provides the contents of a browser window,
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 const content::SSLStatus& ssl, 294 const content::SSLStatus& ssl,
292 bool show_history) OVERRIDE; 295 bool show_history) OVERRIDE;
293 virtual void ShowAppMenu() OVERRIDE; 296 virtual void ShowAppMenu() OVERRIDE;
294 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 297 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
295 bool* is_keyboard_shortcut) OVERRIDE; 298 bool* is_keyboard_shortcut) OVERRIDE;
296 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) 299 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event)
297 OVERRIDE; 300 OVERRIDE;
298 virtual void ShowCreateWebAppShortcutsDialog(TabContentsWrapper* tab_contents) 301 virtual void ShowCreateWebAppShortcutsDialog(TabContentsWrapper* tab_contents)
299 OVERRIDE; 302 OVERRIDE;
300 virtual void ShowCreateChromeAppShortcutsDialog( 303 virtual void ShowCreateChromeAppShortcutsDialog(
301 Profile*, const Extension* app) OVERRIDE; 304 Profile*, const extensions::Extension* app) OVERRIDE;
302 virtual void Cut() OVERRIDE; 305 virtual void Cut() OVERRIDE;
303 virtual void Copy() OVERRIDE; 306 virtual void Copy() OVERRIDE;
304 virtual void Paste() OVERRIDE; 307 virtual void Paste() OVERRIDE;
305 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; 308 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE;
306 virtual void HideInstant() OVERRIDE; 309 virtual void HideInstant() OVERRIDE;
307 virtual gfx::Rect GetInstantBounds() OVERRIDE; 310 virtual gfx::Rect GetInstantBounds() OVERRIDE;
308 virtual WindowOpenDisposition GetDispositionForPopupBounds( 311 virtual WindowOpenDisposition GetDispositionForPopupBounds(
309 const gfx::Rect& bounds) OVERRIDE; 312 const gfx::Rect& bounds) OVERRIDE;
310 virtual FindBar* CreateFindBar() OVERRIDE; 313 virtual FindBar* CreateFindBar() OVERRIDE;
311 #if defined(OS_CHROMEOS) 314 #if defined(OS_CHROMEOS)
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 bool force_location_bar_focus_; 668 bool force_location_bar_focus_;
666 669
667 PendingFullscreenRequest fullscreen_request_; 670 PendingFullscreenRequest fullscreen_request_;
668 671
669 gfx::ScopedSysColorChangeListener color_change_listener_; 672 gfx::ScopedSysColorChangeListener color_change_listener_;
670 673
671 DISALLOW_COPY_AND_ASSIGN(BrowserView); 674 DISALLOW_COPY_AND_ASSIGN(BrowserView);
672 }; 675 };
673 676
674 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 677 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698