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

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

Issue 6513010: WebUI: Get rid of more references to DOMUI in the rest of the directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 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/common/render_messages_internal.h ('k') | chrome/renderer/render_view.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_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 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 int id, 901 int id,
902 bool notify_result); 902 bool notify_result);
903 void OnSelectAll(); 903 void OnSelectAll();
904 void OnSetAccessibilityFocus(int acc_obj_id); 904 void OnSetAccessibilityFocus(int acc_obj_id);
905 void OnSetActive(bool active); 905 void OnSetActive(bool active);
906 void OnSetAltErrorPageURL(const GURL& gurl); 906 void OnSetAltErrorPageURL(const GURL& gurl);
907 void OnSetBackground(const SkBitmap& background); 907 void OnSetBackground(const SkBitmap& background);
908 void OnSetContentSettingsForLoadingURL( 908 void OnSetContentSettingsForLoadingURL(
909 const GURL& url, 909 const GURL& url,
910 const ContentSettings& content_settings); 910 const ContentSettings& content_settings);
911 void OnSetDOMUIProperty(const std::string& name, const std::string& value); 911 void OnSetWebUIProperty(const std::string& name, const std::string& value);
912 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); 912 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands);
913 void OnSetInitialFocus(bool reverse); 913 void OnSetInitialFocus(bool reverse);
914 void OnScrollFocusedEditableNodeIntoView(); 914 void OnScrollFocusedEditableNodeIntoView();
915 void OnSetPageEncoding(const std::string& encoding_name); 915 void OnSetPageEncoding(const std::string& encoding_name);
916 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); 916 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs);
917 void OnSetupDevToolsClient(); 917 void OnSetupDevToolsClient();
918 #if defined(OS_MACOSX) 918 #if defined(OS_MACOSX)
919 void OnSetWindowVisibility(bool visible); 919 void OnSetWindowVisibility(bool visible);
920 #endif 920 #endif
921 void OnSetZoomLevel(double zoom_level); 921 void OnSetZoomLevel(double zoom_level);
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
1443 // bunch of stuff, you should probably create a helper class and put your 1443 // bunch of stuff, you should probably create a helper class and put your
1444 // data and methods on that to avoid bloating RenderView more. You can use 1444 // data and methods on that to avoid bloating RenderView more. You can use
1445 // the Observer interface to filter IPC messages and receive frame change 1445 // the Observer interface to filter IPC messages and receive frame change
1446 // notifications. 1446 // notifications.
1447 // --------------------------------------------------------------------------- 1447 // ---------------------------------------------------------------------------
1448 1448
1449 DISALLOW_COPY_AND_ASSIGN(RenderView); 1449 DISALLOW_COPY_AND_ASSIGN(RenderView);
1450 }; 1450 };
1451 1451
1452 #endif // CHROME_RENDERER_RENDER_VIEW_H_ 1452 #endif // CHROME_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698