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

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

Issue 7327007: Moving notification types which are chrome specific to a new header file chrome_notification_type... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 | « chrome/browser/ui/bookmarks/bookmark_tab_helper.cc ('k') | chrome/browser/ui/browser.cc » ('j') | 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) 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_BROWSER_H_ 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_
6 #define CHROME_BROWSER_UI_BROWSER_H_ 6 #define CHROME_BROWSER_UI_BROWSER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 // Overridden from DownloadTabHelperDelegate: 901 // Overridden from DownloadTabHelperDelegate:
902 virtual bool CanDownload(int request_id) OVERRIDE; 902 virtual bool CanDownload(int request_id) OVERRIDE;
903 virtual void OnStartDownload(DownloadItem* download, 903 virtual void OnStartDownload(DownloadItem* download,
904 TabContentsWrapper* tab) OVERRIDE; 904 TabContentsWrapper* tab) OVERRIDE;
905 905
906 906
907 // Overridden from SelectFileDialog::Listener: 907 // Overridden from SelectFileDialog::Listener:
908 virtual void FileSelected(const FilePath& path, int index, void* params); 908 virtual void FileSelected(const FilePath& path, int index, void* params);
909 909
910 // Overridden from NotificationObserver: 910 // Overridden from NotificationObserver:
911 virtual void Observe(NotificationType type, 911 virtual void Observe(int type,
912 const NotificationSource& source, 912 const NotificationSource& source,
913 const NotificationDetails& details); 913 const NotificationDetails& details);
914 914
915 // Overridden from ProfileSyncServiceObserver: 915 // Overridden from ProfileSyncServiceObserver:
916 virtual void OnStateChanged(); 916 virtual void OnStateChanged();
917 917
918 // Overriden from InstantDelegate: 918 // Overriden from InstantDelegate:
919 virtual void PrepareForInstant() OVERRIDE; 919 virtual void PrepareForInstant() OVERRIDE;
920 virtual void ShowInstant(TabContentsWrapper* preview_contents) OVERRIDE; 920 virtual void ShowInstant(TabContentsWrapper* preview_contents) OVERRIDE;
921 virtual void HideInstant() OVERRIDE; 921 virtual void HideInstant() OVERRIDE;
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
1261 1261
1262 scoped_ptr<InstantController> instant_; 1262 scoped_ptr<InstantController> instant_;
1263 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; 1263 scoped_ptr<InstantUnloadHandler> instant_unload_handler_;
1264 1264
1265 BookmarkBar::State bookmark_bar_state_; 1265 BookmarkBar::State bookmark_bar_state_;
1266 1266
1267 DISALLOW_COPY_AND_ASSIGN(Browser); 1267 DISALLOW_COPY_AND_ASSIGN(Browser);
1268 }; 1268 };
1269 1269
1270 #endif // CHROME_BROWSER_UI_BROWSER_H_ 1270 #endif // CHROME_BROWSER_UI_BROWSER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/bookmarks/bookmark_tab_helper.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698