| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this |
| 2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
| 3 // LICENSE file. | 3 // LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_PLAYER_PROPS_H_ | 5 #ifndef MEDIA_TOOLS_PLAYER_WTL_PROPS_H_ |
| 6 #define MEDIA_PLAYER_PROPS_H_ | 6 #define MEDIA_TOOLS_PLAYER_WTL_PROPS_H_ |
| 7 | 7 |
| 8 #include "media/player/movie.h" | 8 #include "media/tools/player_wtl/movie.h" |
| 9 | 9 |
| 10 #include "resource.h" | 10 #include "resource.h" |
| 11 | 11 |
| 12 // Movie properties dialog | 12 // Movie properties dialog |
| 13 class CFileName : public CWindowImpl<CFileName> { | 13 class CFileName : public CWindowImpl<CFileName> { |
| 14 public: | 14 public: |
| 15 | 15 |
| 16 CFileName() : file_name_(NULL) { | 16 CFileName() : file_name_(NULL) { |
| 17 } | 17 } |
| 18 | 18 |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 | 315 |
| 316 BEGIN_MSG_MAP(CBmpProperties) | 316 BEGIN_MSG_MAP(CBmpProperties) |
| 317 CHAIN_MSG_MAP(CPropertySheetImpl<CBmpProperties>) | 317 CHAIN_MSG_MAP(CPropertySheetImpl<CBmpProperties>) |
| 318 END_MSG_MAP() | 318 END_MSG_MAP() |
| 319 | 319 |
| 320 CPageOne page1_; | 320 CPageOne page1_; |
| 321 CPageTwo page2_; | 321 CPageTwo page2_; |
| 322 CPageThree page3_; | 322 CPageThree page3_; |
| 323 }; | 323 }; |
| 324 | 324 |
| 325 #endif // MEDIA_PLAYER_PROPS_H_ | 325 #endif // MEDIA_TOOLS_PLAYER_WTL_PROPS_H_ |
| OLD | NEW |