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

Side by Side Diff: third_party/liblouis/nacl_wrapper/liblouis_instance.h

Issue 1045863002: Make checkdeps.py check third_party. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
OLDNEW
1 // Copyright 2013 Google Inc. 1 // Copyright 2013 Google Inc.
2 // 2 //
3 // Licensed under the Apache License, Version 2.0 (the "License"); you may not 3 // Licensed under the Apache License, Version 2.0 (the "License"); you may not
4 // use this file except in compliance with the License. You may obtain a copy of 4 // use this file except in compliance with the License. You may obtain a copy of
5 // the License at 5 // the License at
6 // 6 //
7 // http://www.apache.org/licenses/LICENSE-2.0 7 // http://www.apache.org/licenses/LICENSE-2.0
8 // 8 //
9 // Unless required by applicable law or agreed to in writing, software 9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 10 // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 11 // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 // License for the specific language governing permissions and limitations under 12 // License for the specific language governing permissions and limitations under
13 // the License. 13 // the License.
14 14
15 #ifndef LIBLOUIS_NACL_LIBLOUIS_INSTANCE_H_ 15 #ifndef LIBLOUIS_NACL_LIBLOUIS_INSTANCE_H_
16 #define LIBLOUIS_NACL_LIBLOUIS_INSTANCE_H_ 16 #define LIBLOUIS_NACL_LIBLOUIS_INSTANCE_H_
17 17
18 #include <string> 18 #include <string>
19 19
20 #include "base/basictypes.h" 20 #include "base/basictypes.h"
21 #include "json/json.h"
22 #include "liblouis_wrapper.h" 21 #include "liblouis_wrapper.h"
23 #include "ppapi/c/pp_instance.h" 22 #include "ppapi/c/pp_instance.h"
24 #include "ppapi/cpp/completion_callback.h" 23 #include "ppapi/cpp/completion_callback.h"
25 #include "ppapi/cpp/instance.h" 24 #include "ppapi/cpp/instance.h"
26 #include "ppapi/cpp/message_loop.h" 25 #include "ppapi/cpp/message_loop.h"
27 #include "ppapi/cpp/var.h" 26 #include "ppapi/cpp/var.h"
28 #include "ppapi/utility/completion_callback_factory.h" 27 #include "ppapi/utility/completion_callback_factory.h"
29 #include "ppapi/utility/threading/simple_thread.h" 28 #include "ppapi/utility/threading/simple_thread.h"
29 #include "third_party/jsoncpp/source/include/json/json.h"
30 #include "translation_params.h" 30 #include "translation_params.h"
31 31
32 namespace liblouis_nacl { 32 namespace liblouis_nacl {
33 33
34 class LibLouisInstance : public pp::Instance { 34 class LibLouisInstance : public pp::Instance {
35 public: 35 public:
36 explicit LibLouisInstance(PP_Instance instance); 36 explicit LibLouisInstance(PP_Instance instance);
37 virtual ~LibLouisInstance(); 37 virtual ~LibLouisInstance();
38 38
39 virtual bool Init(uint32_t argc, const char* argn[], const char* argv[]); 39 virtual bool Init(uint32_t argc, const char* argn[], const char* argv[]);
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 LibLouisWrapper liblouis_; 83 LibLouisWrapper liblouis_;
84 pp::SimpleThread liblouis_thread_; 84 pp::SimpleThread liblouis_thread_;
85 pp::CompletionCallbackFactory<LibLouisInstance> cc_factory_; 85 pp::CompletionCallbackFactory<LibLouisInstance> cc_factory_;
86 86
87 DISALLOW_COPY_AND_ASSIGN(LibLouisInstance); 87 DISALLOW_COPY_AND_ASSIGN(LibLouisInstance);
88 }; 88 };
89 89
90 } // namespace liblouis_nacl 90 } // namespace liblouis_nacl
91 91
92 #endif // LIBLOUIS_NACL_LIBLOUIS_INSTANCE_H_ 92 #endif // LIBLOUIS_NACL_LIBLOUIS_INSTANCE_H_
OLDNEW
« no previous file with comments | « third_party/liblouis/nacl_wrapper/DEPS ('k') | third_party/liblouis/nacl_wrapper/liblouis_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698