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

Side by Side Diff: chrome/renderer/render_view.h

Issue 199105: Continue with the FreeBSD port - this version builds and links, though... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 3 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/renderer/render_process.cc ('k') | chrome/renderer/renderer_main.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) 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_RENDERER_RENDER_VIEW_H_ 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_
6 #define CHROME_RENDERER_RENDER_VIEW_H_ 6 #define CHROME_RENDERER_RENDER_VIEW_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <queue> 10 #include <queue>
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
700 // Decodes a data: URL image or returns an empty image in case of failure. 700 // Decodes a data: URL image or returns an empty image in case of failure.
701 SkBitmap ImageFromDataUrl(const GURL&) const; 701 SkBitmap ImageFromDataUrl(const GURL&) const;
702 702
703 void DumpLoadHistograms() const; 703 void DumpLoadHistograms() const;
704 704
705 // Scan the given frame for password forms and send them up to the browser. 705 // Scan the given frame for password forms and send them up to the browser.
706 void SendPasswordForms(WebKit::WebFrame* frame); 706 void SendPasswordForms(WebKit::WebFrame* frame);
707 707
708 void Print(WebKit::WebFrame* frame, bool script_initiated); 708 void Print(WebKit::WebFrame* frame, bool script_initiated);
709 709
710 #if defined(OS_LINUX) 710 #if defined(USE_X11)
711 void UpdateFontRenderingFromRendererPrefs(); 711 void UpdateFontRenderingFromRendererPrefs();
712 #else 712 #else
713 void UpdateFontRenderingFromRendererPrefs() { } 713 void UpdateFontRenderingFromRendererPrefs() { }
714 #endif 714 #endif
715 715
716 // Bitwise-ORed set of extra bindings that have been enabled. See 716 // Bitwise-ORed set of extra bindings that have been enabled. See
717 // BindingsPolicy for details. 717 // BindingsPolicy for details.
718 int enabled_bindings_; 718 int enabled_bindings_;
719 719
720 // DOM Automation Controller CppBoundClass. 720 // DOM Automation Controller CppBoundClass.
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 WebPreferences webkit_preferences_; 917 WebPreferences webkit_preferences_;
918 918
919 // Stores edit commands associated to the next key event. 919 // Stores edit commands associated to the next key event.
920 // Shall be cleared as soon as the next key event is processed. 920 // Shall be cleared as soon as the next key event is processed.
921 EditCommands edit_commands_; 921 EditCommands edit_commands_;
922 922
923 DISALLOW_COPY_AND_ASSIGN(RenderView); 923 DISALLOW_COPY_AND_ASSIGN(RenderView);
924 }; 924 };
925 925
926 #endif // CHROME_RENDERER_RENDER_VIEW_H_ 926 #endif // CHROME_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/renderer/render_process.cc ('k') | chrome/renderer/renderer_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698