| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "webkit/plugins/ppapi/ppb_console_impl.h" | 5 #include "webkit/plugins/ppapi/ppb_console_impl.h" |
| 6 | 6 |
| 7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
| 8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
| 9 #include "ppapi/c/dev/ppb_console_dev.h" | 9 #include "ppapi/c/dev/ppb_console_dev.h" |
| 10 #include "ppapi/shared_impl/var.h" | 10 #include "ppapi/shared_impl/var.h" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 } // namespace | 78 } // namespace |
| 79 | 79 |
| 80 // static | 80 // static |
| 81 const struct PPB_Console_Dev* PPB_Console_Impl::GetInterface() { | 81 const struct PPB_Console_Dev* PPB_Console_Impl::GetInterface() { |
| 82 return &ppb_console; | 82 return &ppb_console; |
| 83 } | 83 } |
| 84 | 84 |
| 85 } // namespace ppapi | 85 } // namespace ppapi |
| 86 } // namespace webkit | 86 } // namespace webkit |
| 87 | 87 |
| OLD | NEW |