diff options
Diffstat (limited to 'chrome/browser/chromeos/options/cellular_config_view.h')
| -rw-r--r-- | chrome/browser/chromeos/options/cellular_config_view.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/chromeos/options/cellular_config_view.h b/chrome/browser/chromeos/options/cellular_config_view.h index 9120c6d..36e64ed 100644 --- a/chrome/browser/chromeos/options/cellular_config_view.h +++ b/chrome/browser/chromeos/options/cellular_config_view.h @@ -27,9 +27,9 @@ class CellularConfigView : public views::View, public views::LinkController { public: CellularConfigView(NetworkConfigView* parent, - const CellularNetwork& cellular); + const CellularNetwork* cellular); explicit CellularConfigView(NetworkConfigView* parent); - virtual ~CellularConfigView() {} + virtual ~CellularConfigView(); // views::ButtonListener implementation. virtual void ButtonPressed(views::Button* button, const views::Event& event); @@ -50,7 +50,7 @@ class CellularConfigView : public views::View, NetworkConfigView* parent_; - CellularNetwork cellular_; + scoped_ptr<CellularNetwork> cellular_; views::Label* purchase_info_; views::NativeButton* purchase_more_button_; |
