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

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

Issue 276004: Wire up printing on the Mac (Closed)
Patch Set: Created 11 years, 2 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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_TAB_CONTENTS_TAB_CONTENTS_H_ 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #include <map> 10 #include <map>
(...skipping 22 matching lines...) Expand all
33 #include "chrome/common/extensions/extension_action.h" 33 #include "chrome/common/extensions/extension_action.h"
34 #include "chrome/common/gears_api.h" 34 #include "chrome/common/gears_api.h"
35 #include "chrome/common/navigation_types.h" 35 #include "chrome/common/navigation_types.h"
36 #include "chrome/common/notification_registrar.h" 36 #include "chrome/common/notification_registrar.h"
37 #include "chrome/common/property_bag.h" 37 #include "chrome/common/property_bag.h"
38 #include "chrome/common/renderer_preferences.h" 38 #include "chrome/common/renderer_preferences.h"
39 #include "net/base/load_states.h" 39 #include "net/base/load_states.h"
40 #include "webkit/glue/password_form.h" 40 #include "webkit/glue/password_form.h"
41 #include "webkit/glue/webpreferences.h" 41 #include "webkit/glue/webpreferences.h"
42 42
43 #if defined(OS_MACOSX) || defined(OS_LINUX) 43 #if defined(OS_LINUX)
44 // Remove when we've finished porting the supporting classes. 44 // Remove when we've finished porting the supporting classes.
45 #include "chrome/common/temp_scaffolding_stubs.h" 45 #include "chrome/common/temp_scaffolding_stubs.h"
46 #elif defined(OS_WIN) 46 #elif defined(OS_WIN) || defined(OS_MACOSX)
47 #include "chrome/browser/printing/print_view_manager.h" 47 #include "chrome/browser/printing/print_view_manager.h"
48 #endif 48 #endif
49 49
50 namespace gfx { 50 namespace gfx {
51 class Rect; 51 class Rect;
52 class Size; 52 class Size;
53 } 53 }
54 54
55 namespace views { 55 namespace views {
56 class WindowDelegate; 56 class WindowDelegate;
(...skipping 1102 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 1159
1160 // The time that we started to create the new tab page. 1160 // The time that we started to create the new tab page.
1161 base::TimeTicks new_tab_start_time_; 1161 base::TimeTicks new_tab_start_time_;
1162 1162
1163 // --------------------------------------------------------------------------- 1163 // ---------------------------------------------------------------------------
1164 1164
1165 DISALLOW_COPY_AND_ASSIGN(TabContents); 1165 DISALLOW_COPY_AND_ASSIGN(TabContents);
1166 }; 1166 };
1167 1167
1168 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 1168 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698