diff options
5 files changed, 17 insertions, 5 deletions
diff --git a/chrome/browser/chromeos/cros/mount_library.cc b/chrome/browser/chromeos/cros/mount_library.cc index 523de2a..2457a09 100644 --- a/chrome/browser/chromeos/cros/mount_library.cc +++ b/chrome/browser/chromeos/cros/mount_library.cc @@ -47,7 +47,7 @@ MountLibrary::Disk::Disk(const std::string& device_path, mount_path_ = mount_path_.append("/"); } -MountLibrary::Disk::Disk() {} +MountLibrary::Disk::~Disk() {} class MountLibraryImpl : public MountLibrary { diff --git a/chrome/browser/chromeos/external_protocol_dialog.cc b/chrome/browser/chromeos/external_protocol_dialog.cc index a44a0b9..446917a 100644 --- a/chrome/browser/chromeos/external_protocol_dialog.cc +++ b/chrome/browser/chromeos/external_protocol_dialog.cc @@ -79,6 +79,14 @@ views::View* ExternalProtocolDialog::GetContentsView() { return message_box_view_; } +bool ExternalProtocolDialog::IsAlwaysOnTop() const { + return false; +} + +bool ExternalProtocolDialog::IsModal() const { + return false; +} + /////////////////////////////////////////////////////////////////////////////// // ExternalProtocolDialog, private: diff --git a/chrome/browser/chromeos/external_protocol_dialog.h b/chrome/browser/chromeos/external_protocol_dialog.h index fcb8bea..c91b58b 100644 --- a/chrome/browser/chromeos/external_protocol_dialog.h +++ b/chrome/browser/chromeos/external_protocol_dialog.h @@ -36,8 +36,8 @@ class ExternalProtocolDialog : public views::DialogDelegate { virtual views::View* GetContentsView(); // views::WindowDelegate Methods: - virtual bool IsAlwaysOnTop() const { return false; } - virtual bool IsModal() const { return false; } + virtual bool IsAlwaysOnTop() const; + virtual bool IsModal() const; private: // The message box view whose commands we handle. diff --git a/chrome/browser/ui/webui/chromeos/imageburner_ui.cc b/chrome/browser/ui/webui/chromeos/imageburner_ui.cc index 1d66791..09852cc 100644 --- a/chrome/browser/ui/webui/chromeos/imageburner_ui.cc +++ b/chrome/browser/ui/webui/chromeos/imageburner_ui.cc @@ -736,6 +736,10 @@ ImageBurnDownloader* ImageBurnDownloader::GetInstance() { return Singleton<ImageBurnDownloader>::get(); } +ImageBurnDownloader::ImageBurnDownloader() {} + +ImageBurnDownloader::~ImageBurnDownloader() {} + void ImageBurnDownloader::DownloadFile(const GURL& url, const FilePath& file_path, TabContents* tab_contents) { // First we have to create file stream we will download file to. diff --git a/chrome/browser/ui/webui/chromeos/imageburner_ui.h b/chrome/browser/ui/webui/chromeos/imageburner_ui.h index 4dfe9e1..4d8bcd0 100644 --- a/chrome/browser/ui/webui/chromeos/imageburner_ui.h +++ b/chrome/browser/ui/webui/chromeos/imageburner_ui.h @@ -70,8 +70,8 @@ class ImageBurnDownloader { void AddListener(Listener* listener, const GURL& url); private: - ImageBurnDownloader() {} - ~ImageBurnDownloader() {} + ImageBurnDownloader(); + ~ImageBurnDownloader(); // Let listeners know if download started successfully. void DownloadStarted(bool success, const GURL& url); |