diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-14 22:27:18 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-14 22:27:18 +0000 |
commit | 686439cad71d7a391214ca1dfaf1e23927b1a43a (patch) | |
tree | 0fc586a435ee820adb73a0ea4b86fdfad0902bf4 /printing | |
parent | 6634b7db87117a9773b4f78b9747ff71a9849a3a (diff) | |
download | chromium_src-686439cad71d7a391214ca1dfaf1e23927b1a43a.zip chromium_src-686439cad71d7a391214ca1dfaf1e23927b1a43a.tar.gz chromium_src-686439cad71d7a391214ca1dfaf1e23927b1a43a.tar.bz2 |
Cleanup: Remove unneeded forward declarations in printing, sandbox, and skia.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8538001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109961 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing')
-rw-r--r-- | printing/emf_win.h | 2 | ||||
-rw-r--r-- | printing/metafile.h | 1 | ||||
-rw-r--r-- | printing/pdf_metafile_cg_mac.h | 1 | ||||
-rw-r--r-- | printing/printed_document.h | 4 | ||||
-rw-r--r-- | printing/printed_pages_source.h | 2 | ||||
-rw-r--r-- | printing/printing_context_no_system_dialog.h | 3 |
6 files changed, 1 insertions, 12 deletions
diff --git a/printing/emf_win.h b/printing/emf_win.h index f32e184..1d10687 100644 --- a/printing/emf_win.h +++ b/printing/emf_win.h @@ -6,6 +6,7 @@ #define PRINTING_EMF_WIN_H_ #include <windows.h> + #include <vector> #include "base/basictypes.h" @@ -15,7 +16,6 @@ class FilePath; namespace gfx { -class Point; class Rect; class Size; } diff --git a/printing/metafile.h b/printing/metafile.h index 99eb185..8720f3a 100644 --- a/printing/metafile.h +++ b/printing/metafile.h @@ -21,7 +21,6 @@ class FilePath; namespace gfx { -class Point; class Rect; class Size; } diff --git a/printing/pdf_metafile_cg_mac.h b/printing/pdf_metafile_cg_mac.h index 23c00c2..f6fcd26 100644 --- a/printing/pdf_metafile_cg_mac.h +++ b/printing/pdf_metafile_cg_mac.h @@ -19,7 +19,6 @@ class FilePath; namespace gfx { class Rect; class Size; -class Point; } namespace printing { diff --git a/printing/printed_document.h b/printing/printed_document.h index 4fe415b..7233df5 100644 --- a/printing/printed_document.h +++ b/printing/printed_document.h @@ -17,10 +17,6 @@ class FilePath; class MessageLoop; -namespace gfx { -class Font; -} - namespace printing { class Metafile; diff --git a/printing/printed_pages_source.h b/printing/printed_pages_source.h index 3af916b..0f90b36 100644 --- a/printing/printed_pages_source.h +++ b/printing/printed_pages_source.h @@ -9,8 +9,6 @@ namespace printing { -class PrintedDocument; - // Source of printed pages. class PrintedPagesSource { public: diff --git a/printing/printing_context_no_system_dialog.h b/printing/printing_context_no_system_dialog.h index 0f9316d..5200b8d 100644 --- a/printing/printing_context_no_system_dialog.h +++ b/printing/printing_context_no_system_dialog.h @@ -15,8 +15,6 @@ class DictionaryValue; namespace printing { -class Metafile; - class PRINTING_EXPORT PrintingContextNoSystemDialog : public PrintingContext { public: explicit PrintingContextNoSystemDialog(const std::string& app_locale); @@ -47,4 +45,3 @@ class PRINTING_EXPORT PrintingContextNoSystemDialog : public PrintingContext { } // namespace printing #endif // PRINTING_PRINTING_CONTEXT_NO_SYSTEM_DIALOG_H_ - |