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

Unified Diff: mojo/examples/window_manager/debug_panel.h

Issue 460863002: Rename Node to View in the View Manager mojom & client lib. Service TBD. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/examples/png_viewer/png_viewer.cc ('k') | mojo/examples/window_manager/debug_panel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/examples/window_manager/debug_panel.h
diff --git a/mojo/examples/window_manager/debug_panel.h b/mojo/examples/window_manager/debug_panel.h
index 843c937126fe64e547c0114e91ae3a43898cb242..df22e0bf33a459e4aec0297475a6973c10737247 100644
--- a/mojo/examples/window_manager/debug_panel.h
+++ b/mojo/examples/window_manager/debug_panel.h
@@ -19,7 +19,7 @@ class RadioButton;
namespace mojo {
-class Node;
+class View;
namespace examples {
@@ -38,13 +38,13 @@ class DebugPanel : public views::LayoutManager, public views::ButtonListener {
public:
virtual void CloseTopWindow() = 0;
virtual void RequestNavigate(
- uint32 source_node_id, Target target,
+ uint32 source_view_id, Target target,
NavigationDetailsPtr nav_details) = 0;
protected:
virtual ~Delegate(){}
};
- DebugPanel(Delegate* delegate, Node* node);
+ DebugPanel(Delegate* delegate, View* view);
virtual ~DebugPanel();
Target navigation_target() const;
@@ -59,7 +59,7 @@ class DebugPanel : public views::LayoutManager, public views::ButtonListener {
void Navigate(const std::string& url);
Delegate* delegate_;
- Node* node_;
+ View* view_;
views::Label* navigation_target_label_;
views::RadioButton* navigation_target_new_;
« no previous file with comments | « mojo/examples/png_viewer/png_viewer.cc ('k') | mojo/examples/window_manager/debug_panel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698