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

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

Issue 7044095: Hooking MHTML generation to the browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style fixes Created 9 years, 6 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
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include "content/common/page_transition_types.h" 44 #include "content/common/page_transition_types.h"
45 #include "content/common/page_zoom.h" 45 #include "content/common/page_zoom.h"
46 #include "ui/gfx/rect.h" 46 #include "ui/gfx/rect.h"
47 47
48 class BrowserTabRestoreServiceDelegate; 48 class BrowserTabRestoreServiceDelegate;
49 class BrowserWindow; 49 class BrowserWindow;
50 class Extension; 50 class Extension;
51 class FindBarController; 51 class FindBarController;
52 class InstantController; 52 class InstantController;
53 class InstantUnloadHandler; 53 class InstantUnloadHandler;
54 class MHTMLGenerationManager;
54 class PrefService; 55 class PrefService;
55 class Profile; 56 class Profile;
56 class SessionStorageNamespace; 57 class SessionStorageNamespace;
57 class SkBitmap; 58 class SkBitmap;
58 class StatusBubble; 59 class StatusBubble;
59 class TabNavigation; 60 class TabNavigation;
60 class TabStripModel; 61 class TabStripModel;
61 struct WebApplicationInfo; 62 struct WebApplicationInfo;
62 namespace gfx { 63 namespace gfx {
63 class Point; 64 class Point;
(...skipping 1169 matching lines...) Expand 10 before | Expand all | Expand 10 after
1233 // The profile's tab restore service. The service is owned by the profile, 1234 // The profile's tab restore service. The service is owned by the profile,
1234 // and we install ourselves as an observer. 1235 // and we install ourselves as an observer.
1235 TabRestoreService* tab_restore_service_; 1236 TabRestoreService* tab_restore_service_;
1236 1237
1237 // Helper which implements the TabRestoreServiceDelegate interface. 1238 // Helper which implements the TabRestoreServiceDelegate interface.
1238 scoped_ptr<BrowserTabRestoreServiceDelegate> tab_restore_service_delegate_; 1239 scoped_ptr<BrowserTabRestoreServiceDelegate> tab_restore_service_delegate_;
1239 1240
1240 scoped_ptr<InstantController> instant_; 1241 scoped_ptr<InstantController> instant_;
1241 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; 1242 scoped_ptr<InstantUnloadHandler> instant_unload_handler_;
1242 1243
1244 scoped_refptr<MHTMLGenerationManager> mhtml_generation_manager_;
1245
1243 DISALLOW_COPY_AND_ASSIGN(Browser); 1246 DISALLOW_COPY_AND_ASSIGN(Browser);
1244 }; 1247 };
1245 1248
1246 #endif // CHROME_BROWSER_UI_BROWSER_H_ 1249 #endif // CHROME_BROWSER_UI_BROWSER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698