diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-13 17:44:15 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-13 17:44:15 +0000 |
commit | bbf94a3e7f3c4372c4ff918a6811a505d8fd69b9 (patch) | |
tree | c5d2614d92182544af89d3908be118149fae185a /chrome/browser/shell_dialogs.h | |
parent | 372c8e90fba9881bdf52298587f336cc083e3b17 (diff) | |
download | chromium_src-bbf94a3e7f3c4372c4ff918a6811a505d8fd69b9.zip chromium_src-bbf94a3e7f3c4372c4ff918a6811a505d8fd69b9.tar.gz chromium_src-bbf94a3e7f3c4372c4ff918a6811a505d8fd69b9.tar.bz2 |
FBTF: Fix more ctor/dtors found by clang plugin.
(1.2 megs off of Debug Linux .a files)
BUG=none
TEST=compiles everywhere
Review URL: http://codereview.chromium.org/3743001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62420 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/shell_dialogs.h')
-rw-r--r-- | chrome/browser/shell_dialogs.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/chrome/browser/shell_dialogs.h b/chrome/browser/shell_dialogs.h index eac3f5e..9b080f9 100644 --- a/chrome/browser/shell_dialogs.h +++ b/chrome/browser/shell_dialogs.h @@ -92,6 +92,9 @@ class SelectFileDialog // |include_all_files| specifies whether there will be a filter added for all // files (i.e. *.*). struct FileTypeInfo { + FileTypeInfo(); + ~FileTypeInfo(); + std::vector<std::vector<FilePath::StringType> > extensions; std::vector<string16> extension_description_overrides; bool include_all_files; @@ -134,8 +137,8 @@ class SelectFileDialog protected: friend class base::RefCountedThreadSafe<SelectFileDialog>; - - virtual ~SelectFileDialog() {} + SelectFileDialog(); + virtual ~SelectFileDialog(); }; // Shows a dialog box for selecting a font. @@ -191,8 +194,8 @@ class SelectFontDialog protected: friend class base::RefCountedThreadSafe<SelectFontDialog>; - - virtual ~SelectFontDialog() {} + SelectFontDialog(); + virtual ~SelectFontDialog(); }; #endif // CHROME_BROWSER_SHELL_DIALOGS_H_ |