Chromium Code Reviews| Index: components/pdf/browser/open_pdf_in_reader_prompt_delegate.h |
| diff --git a/chrome/browser/ui/pdf/open_pdf_in_reader_prompt_delegate.h b/components/pdf/browser/open_pdf_in_reader_prompt_delegate.h |
| similarity index 66% |
| rename from chrome/browser/ui/pdf/open_pdf_in_reader_prompt_delegate.h |
| rename to components/pdf/browser/open_pdf_in_reader_prompt_delegate.h |
| index c39d66af82264734483cd92bd7e58366d9a21320..32c46800aa011d1cf0d3952b59aab28d5027cef3 100644 |
| --- a/chrome/browser/ui/pdf/open_pdf_in_reader_prompt_delegate.h |
| +++ b/components/pdf/browser/open_pdf_in_reader_prompt_delegate.h |
| @@ -1,9 +1,9 @@ |
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
|
blundell
2014/08/27 09:12:32
nit: personally i wouldn't change this (same comme
sadrul
2014/08/27 11:49:57
Done.
|
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef CHROME_BROWSER_UI_PDF_OPEN_PDF_IN_READER_PROMPT_DELEGATE_H_ |
| -#define CHROME_BROWSER_UI_PDF_OPEN_PDF_IN_READER_PROMPT_DELEGATE_H_ |
| +#ifndef COMPONENTS_PDF_BROWSER_OPEN_PDF_IN_READER_PROMPT_DELEGATE_H_ |
| +#define COMPONENTS_PDF_BROWSER_OPEN_PDF_IN_READER_PROMPT_DELEGATE_H_ |
| #include "base/strings/string16.h" |
| @@ -11,6 +11,8 @@ namespace content { |
| struct LoadCommittedDetails; |
| } |
| +namespace pdf { |
| + |
| class OpenPDFInReaderPromptDelegate { |
|
blundell
2014/08/27 09:12:32
nit: for this class and the other Delegate class,
sadrul
2014/08/27 11:49:57
How strongly do you feel about this? Since this is
blundell
2014/08/27 12:24:48
I feel pretty strongly about it. The ones that you
|
| public: |
| virtual ~OpenPDFInReaderPromptDelegate() {} |
| @@ -29,4 +31,6 @@ class OpenPDFInReaderPromptDelegate { |
| virtual void Cancel() = 0; |
| }; |
| -#endif // CHROME_BROWSER_UI_PDF_OPEN_PDF_IN_READER_PROMPT_DELEGATE_H_ |
| +} // namespace pdf |
| + |
| +#endif // COMPONENTS_PDF_BROWSER_OPEN_PDF_IN_READER_PROMPT_DELEGATE_H_ |