| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <fcntl.h> | 5 #include <fcntl.h> |
| 6 #include <pthread.h> | 6 #include <pthread.h> |
| 7 #include <stdio.h> | 7 #include <stdio.h> |
| 8 #include <sys/types.h> | 8 #include <sys/types.h> |
| 9 #include <sys/stat.h> | 9 #include <sys/stat.h> |
| 10 | 10 |
| 11 #include <cstdlib> | 11 #include <cstdlib> |
| 12 #include <cstring> | 12 #include <cstring> |
| 13 #include <map> | 13 #include <map> |
| 14 #include <string> | 14 #include <string> |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 #include "nacl_mounts/kernel_wrap.h" |
| 17 #include "nacl_mounts/nacl_mounts.h" | 18 #include "nacl_mounts/nacl_mounts.h" |
| 18 | 19 |
| 19 #include "ppapi/cpp/input_event.h" | 20 #include "ppapi/cpp/input_event.h" |
| 20 #include "ppapi/cpp/rect.h" | 21 #include "ppapi/cpp/rect.h" |
| 21 #include "ppapi/cpp/size.h" | 22 #include "ppapi/cpp/size.h" |
| 22 #include "ppapi/cpp/var.h" | 23 #include "ppapi/cpp/var.h" |
| 23 | 24 |
| 24 #include "ppapi_main/ppapi_instance.h" | 25 #include "ppapi_main/ppapi_instance.h" |
| 25 #include "ppapi_main/ppapi_main.h" | 26 #include "ppapi_main/ppapi_main.h" |
| 26 | 27 |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 } | 182 } |
| 182 return false; | 183 return false; |
| 183 } | 184 } |
| 184 | 185 |
| 185 void PPAPIInstance::DidChangeView(const pp::View&) { | 186 void PPAPIInstance::DidChangeView(const pp::View&) { |
| 186 } | 187 } |
| 187 | 188 |
| 188 void PPAPIInstance::DidChangeFocus(bool focus) { | 189 void PPAPIInstance::DidChangeFocus(bool focus) { |
| 189 has_focus_ = focus; | 190 has_focus_ = focus; |
| 190 } | 191 } |
| OLD | NEW |