| Index: content/public/common/presentation_session.cc
|
| diff --git a/content/public/common/presentation_session.cc b/content/public/common/presentation_session.cc
|
| index 4f5cb8cc9d0d070d741794e81c6e2680cb5adde8..5cc2cc529fad0c52b1a0c58a4177d707bd4784ef 100644
|
| --- a/content/public/common/presentation_session.cc
|
| +++ b/content/public/common/presentation_session.cc
|
| @@ -11,18 +11,12 @@ PresentationSessionInfo::PresentationSessionInfo(
|
| const std::string& presentation_id)
|
| : presentation_url(presentation_url), presentation_id(presentation_id) {}
|
|
|
| -PresentationSessionInfo::~PresentationSessionInfo() {
|
| -}
|
| +PresentationSessionInfo::~PresentationSessionInfo() {}
|
|
|
| -PresentationError::PresentationError(
|
| - PresentationErrorType error_type,
|
| - const std::string& message)
|
| - : error_type(error_type),
|
| - message(message) {
|
| -}
|
| +PresentationError::PresentationError(PresentationErrorType error_type,
|
| + const std::string& message)
|
| + : error_type(error_type), message(message) {}
|
|
|
| -PresentationError::~PresentationError() {
|
| -}
|
| +PresentationError::~PresentationError() {}
|
|
|
| } // namespace content
|
| -
|
|
|