| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/scoped_ptr.h" | 5 #include "base/scoped_ptr.h" |
| 6 #include "base/stats_counters.h" | 6 #include "base/stats_counters.h" |
| 7 | 7 |
| 8 #include "flip_framer.h" // cross-google3 directory naming. | 8 #include "flip_framer.h" // cross-google3 directory naming. |
| 9 #include "flip_frame_builder.h" | 9 #include "flip_frame_builder.h" |
| 10 #include "flip_bitmasks.h" | 10 #include "flip_bitmasks.h" |
| (...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 723 void FlipFramer::set_enable_compression(bool value) { | 723 void FlipFramer::set_enable_compression(bool value) { |
| 724 enable_compression_ = value; | 724 enable_compression_ = value; |
| 725 } | 725 } |
| 726 | 726 |
| 727 void FlipFramer::set_enable_compression_default(bool value) { | 727 void FlipFramer::set_enable_compression_default(bool value) { |
| 728 compression_default_ = value; | 728 compression_default_ = value; |
| 729 } | 729 } |
| 730 | 730 |
| 731 } // namespace flip | 731 } // namespace flip |
| 732 | 732 |
| OLD | NEW |