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

Side by Side Diff: chrome/browser/ui/cocoa/browser_window_cocoa.h

Issue 8404007: Delete code for and references to mini-gallery and theme install bubbles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_COCOA_BROWSER_WINDOW_COCOA_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_
6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/memory/scoped_nsobject.h" 9 #include "base/memory/scoped_nsobject.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 virtual void ToggleBookmarkBar(); 82 virtual void ToggleBookmarkBar();
83 virtual void ShowAboutChromeDialog(); 83 virtual void ShowAboutChromeDialog();
84 virtual void ShowUpdateChromeDialog(); 84 virtual void ShowUpdateChromeDialog();
85 virtual void ShowTaskManager(); 85 virtual void ShowTaskManager();
86 virtual void ShowBackgroundPages(); 86 virtual void ShowBackgroundPages();
87 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked); 87 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked);
88 virtual bool IsDownloadShelfVisible() const; 88 virtual bool IsDownloadShelfVisible() const;
89 virtual DownloadShelf* GetDownloadShelf(); 89 virtual DownloadShelf* GetDownloadShelf();
90 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents); 90 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents);
91 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper); 91 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper);
92 virtual void ShowThemeInstallBubble();
93 virtual void ConfirmBrowserCloseWithPendingDownloads(); 92 virtual void ConfirmBrowserCloseWithPendingDownloads();
94 virtual void UserChangedTheme(); 93 virtual void UserChangedTheme();
95 virtual int GetExtraRenderViewHeight() const; 94 virtual int GetExtraRenderViewHeight() const;
96 virtual void TabContentsFocused(TabContents* tab_contents); 95 virtual void TabContentsFocused(TabContents* tab_contents);
97 virtual void ShowPageInfo(Profile* profile, 96 virtual void ShowPageInfo(Profile* profile,
98 const GURL& url, 97 const GURL& url,
99 const NavigationEntry::SSLStatus& ssl, 98 const NavigationEntry::SSLStatus& ssl,
100 bool show_history); 99 bool show_history);
101 virtual void ShowAppMenu(); 100 virtual void ShowAppMenu();
102 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 101 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 content::NotificationRegistrar registrar_; 144 content::NotificationRegistrar registrar_;
146 PrefChangeRegistrar pref_change_registrar_; 145 PrefChangeRegistrar pref_change_registrar_;
147 Browser* browser_; // weak, owned by controller 146 Browser* browser_; // weak, owned by controller
148 BrowserWindowController* controller_; // weak, owns us 147 BrowserWindowController* controller_; // weak, owns us
149 base::WeakPtrFactory<Browser> confirm_close_factory_; 148 base::WeakPtrFactory<Browser> confirm_close_factory_;
150 scoped_nsobject<NSString> pending_window_title_; 149 scoped_nsobject<NSString> pending_window_title_;
151 ui::WindowShowState initial_show_state_; 150 ui::WindowShowState initial_show_state_;
152 }; 151 };
153 152
154 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ 153 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698