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

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

Issue 123001: Move renderer_preferences.h from chrome/browser into chrome/common. We (Closed)
Patch Set: include deps Created 11 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
« no previous file with comments | « chrome/browser/tab_contents/tab_contents.h ('k') | chrome/chrome.gyp » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_ 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/gfx/native_widget_types.h" 9 #include "base/gfx/native_widget_types.h"
10 #include "base/gfx/rect.h" 10 #include "base/gfx/rect.h"
11 #include "chrome/browser/renderer_preferences.h"
12 #include "chrome/common/page_transition_types.h" 11 #include "chrome/common/page_transition_types.h"
12 #include "chrome/common/renderer_preferences.h"
13 #include "webkit/glue/window_open_disposition.h" 13 #include "webkit/glue/window_open_disposition.h"
14 14
15 class DownloadItem; 15 class DownloadItem;
16 class ExtensionFunctionDispatcher; 16 class ExtensionFunctionDispatcher;
17 class RenderViewHost; 17 class RenderViewHost;
18 class TabContents; 18 class TabContents;
19 class HtmlDialogUIDelegate; 19 class HtmlDialogUIDelegate;
20 class GURL; 20 class GURL;
21 21
22 // Objects implement this interface to get notified about changes in the 22 // Objects implement this interface to get notified about changes in the
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 // Returns the renderer's current preferences settings. 183 // Returns the renderer's current preferences settings.
184 RendererPreferences GetRendererPrefs() const { return renderer_preferences_; } 184 RendererPreferences GetRendererPrefs() const { return renderer_preferences_; }
185 185
186 protected: 186 protected:
187 ~TabContentsDelegate() {} 187 ~TabContentsDelegate() {}
188 RendererPreferences renderer_preferences_; 188 RendererPreferences renderer_preferences_;
189 189
190 }; 190 };
191 191
192 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_ 192 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/tab_contents/tab_contents.h ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698