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

Side by Side Diff: webkit/plugins/npapi/test/plugin_arguments_test.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
« no previous file with comments | « webkit/plugins/npapi/plugin_utils.cc ('k') | webkit/plugins/npapi/test/plugin_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 <stdlib.h> 5 #include <stdlib.h>
6 6
7 #include "webkit/plugins/npapi/test/plugin_arguments_test.h" 7 #include "webkit/plugins/npapi/test/plugin_arguments_test.h"
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/string_util.h" 10 #include "base/strings/string_util.h"
11 #include "base/stringprintf.h" 11 #include "base/strings/stringprintf.h"
12 12
13 namespace NPAPIClient { 13 namespace NPAPIClient {
14 14
15 PluginArgumentsTest::PluginArgumentsTest(NPP id, 15 PluginArgumentsTest::PluginArgumentsTest(NPP id,
16 NPNetscapeFuncs *host_functions) 16 NPNetscapeFuncs *host_functions)
17 : PluginTest(id, host_functions) { 17 : PluginTest(id, host_functions) {
18 } 18 }
19 19
20 NPError PluginArgumentsTest::New(uint16 mode, int16 argc, 20 NPError PluginArgumentsTest::New(uint16 mode, int16 argc,
21 const char* argn[], const char* argv[], 21 const char* argn[], const char* argv[],
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 } 62 }
63 63
64 NPError PluginArgumentsTest::SetWindow(NPWindow* pNPWindow) { 64 NPError PluginArgumentsTest::SetWindow(NPWindow* pNPWindow) {
65 // This test just tests the arguments. We're done now. 65 // This test just tests the arguments. We're done now.
66 this->SignalTestCompleted(); 66 this->SignalTestCompleted();
67 67
68 return NPERR_NO_ERROR; 68 return NPERR_NO_ERROR;
69 } 69 }
70 70
71 } // namespace NPAPIClient 71 } // namespace NPAPIClient
OLDNEW
« no previous file with comments | « webkit/plugins/npapi/plugin_utils.cc ('k') | webkit/plugins/npapi/test/plugin_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698