| OLD | NEW |
| 1 commit 18c7993ed0f767d3239930845f964bcaf44af24d | 1 commit 18c7993ed0f767d3239930845f964bcaf44af24d |
| 2 Author: Andrew Scherkus <scherkus@chromium.org> | 2 Author: Andrew Scherkus <scherkus@chromium.org> |
| 3 Date: Tue Nov 24 18:05:20 2009 -0800 | 3 Date: Tue Nov 24 18:05:20 2009 -0800 |
| 4 | 4 |
| 5 Re-organizing all tools under /src/media to be consistent with the rest of t
he repository. | 5 Re-organizing all tools under /src/media to be consistent with the rest of t
he repository. |
| 6 | 6 |
| 7 diff --git a/media/tools/player_wtl/player.cc b/media/tools/player_wtl/player.cc | 7 diff --git a/media/tools/player_wtl/player.cc b/media/tools/player_wtl/player.cc |
| 8 new file mode 100644 | 8 new file mode 100644 |
| 9 index 0000000..70aea4f | 9 index 0000000..70aea4f |
| 10 --- /dev/null | 10 --- /dev/null |
| 11 +++ b/media/tools/player_wtl/player.cc | 11 +++ b/media/tools/player_wtl/player.cc |
| 12 @@ -0,0 +1,9 @@ | 12 @@ -0,0 +1,9 @@ |
| 13 +// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 13 +// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 14 +// Use of this source code is governed by a BSD-style license that can be | 14 +// Use of this source code is governed by a BSD-style license that can be |
| 15 +// found in the LICENSE file. | 15 +// found in the LICENSE file. |
| 16 + | 16 + |
| 17 +// Stand alone media player application used for testing the media library. | 17 +// Stand alone media player application used for testing the media library. |
| 18 + | 18 + |
| 19 +int main(int argc, char** argv) { | 19 +int main(int argc, char** argv) { |
| 20 + return 0; | 20 + return 0; |
| 21 +} | 21 +} |
| OLD | NEW |