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

Side by Side Diff: webkit/plugins/npapi/test/plugin_client.cc

Issue 16739016: Use a direct include of strings headers in webkit/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing include from ordering Created 7 years, 6 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 "webkit/plugins/npapi/test/plugin_client.h" 5 #include "webkit/plugins/npapi/test/plugin_client.h"
6 6
7 #include "base/string_util.h" 7 #include "base/strings/string_util.h"
8 #include "webkit/plugins/npapi/test/plugin_execute_stream_javascript.h" 8 #include "webkit/plugins/npapi/test/plugin_execute_stream_javascript.h"
9 #include "webkit/plugins/npapi/test/plugin_test.h" 9 #include "webkit/plugins/npapi/test/plugin_test.h"
10 #include "webkit/plugins/npapi/test/plugin_test_factory.h" 10 #include "webkit/plugins/npapi/test/plugin_test_factory.h"
11 11
12 namespace NPAPIClient { 12 namespace NPAPIClient {
13 13
14 NPNetscapeFuncs* PluginClient::host_functions_; 14 NPNetscapeFuncs* PluginClient::host_functions_;
15 15
16 NPError PluginClient::GetEntryPoints(NPPluginFuncs* pFuncs) { 16 NPError PluginClient::GetEntryPoints(NPPluginFuncs* pFuncs) {
17 if (pFuncs == NULL) 17 if (pFuncs == NULL)
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 } 261 }
262 } 262 }
263 263
264 NPError NPP_ClearSiteData(const char* site, 264 NPError NPP_ClearSiteData(const char* site,
265 uint64 flags, 265 uint64 flags,
266 uint64 max_age) { 266 uint64 max_age) {
267 LOG(INFO) << "NPP_ClearSiteData called"; 267 LOG(INFO) << "NPP_ClearSiteData called";
268 return NPERR_NO_ERROR; 268 return NPERR_NO_ERROR;
269 } 269 }
270 } // extern "C" 270 } // extern "C"
OLDNEW
« no previous file with comments | « webkit/plugins/npapi/test/plugin_arguments_test.cc ('k') | webkit/plugins/npapi/test/plugin_geturl_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698