Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Side by Side Diff: native_client_sdk/src/libraries/ppapi_main/ppapi_instance.cc

Issue 11882012: Convert all project to use common.mk (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/ppapi_main/library.dsc ('k') | native_client_sdk/src/tools/common.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698