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

Side by Side Diff: chrome/browser/devtools/devtools_protocol.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_H_ 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_H_
6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_H_ 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/memory/scoped_ptr.h"
11 #include "base/values.h" 12 #include "base/values.h"
12 13
13 // Utility class for processing DevTools remote debugging messages. 14 // Utility class for processing DevTools remote debugging messages.
14 class DevToolsProtocol { 15 class DevToolsProtocol {
15 public: 16 public:
16 // Caller maintains ownership of |command|. |*params| is owned by |command|. 17 // Caller maintains ownership of |command|. |*params| is owned by |command|.
17 static bool ParseCommand(base::DictionaryValue* command, 18 static bool ParseCommand(base::DictionaryValue* command,
18 int* command_id, 19 int* command_id,
19 std::string* method, 20 std::string* method,
20 base::DictionaryValue** params); 21 base::DictionaryValue** params);
(...skipping 17 matching lines...) Expand all
38 static scoped_ptr<base::DictionaryValue> CreateInvalidParamsResponse( 39 static scoped_ptr<base::DictionaryValue> CreateInvalidParamsResponse(
39 int command_id, 40 int command_id,
40 const std::string& param); 41 const std::string& param);
41 42
42 private: 43 private:
43 DevToolsProtocol() {} 44 DevToolsProtocol() {}
44 ~DevToolsProtocol() {} 45 ~DevToolsProtocol() {}
45 }; 46 };
46 47
47 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_H_ 48 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_PROTOCOL_H_
OLDNEW
« no previous file with comments | « chrome/browser/devtools/devtools_file_watcher.cc ('k') | chrome/browser/diagnostics/recon_diagnostics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698