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

Side by Side Diff: chrome/browser/ui/webui/extensions/extension_error_handler.h

Issue 56833003: Use base::PostTaskAndReplyWithResults() in more places. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, fix clang error Created 7 years, 1 month 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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_UI_WEBUI_EXTENSIONS_EXTENSION_ERROR_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_ERROR_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_ERROR_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_ERROR_HANDLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 friend class ManifestHighlightUnitTest; 42 friend class ManifestHighlightUnitTest;
43 43
44 // Handle the "requestFileSource" call. 44 // Handle the "requestFileSource" call.
45 void HandleRequestFileSource(const base::ListValue* args); 45 void HandleRequestFileSource(const base::ListValue* args);
46 // Handle the "openDevTools" call. 46 // Handle the "openDevTools" call.
47 void HandleOpenDevTools(const base::ListValue* args); 47 void HandleOpenDevTools(const base::ListValue* args);
48 48
49 // Populate the results for a manifest file's content in response to the 49 // Populate the results for a manifest file's content in response to the
50 // "requestFileSource" call. Highlight the part of the manifest which 50 // "requestFileSource" call. Highlight the part of the manifest which
51 // corresponds to the given |key| and |specific| locations. Caller owns 51 // corresponds to the given |key| and |specific| locations. Caller owns
52 // |dict| and |contents|. 52 // |dict|.
53 void GetManifestFileCallback(base::DictionaryValue* dict, 53 void GetManifestFileCallback(base::DictionaryValue* dict,
54 const std::string& key, 54 const std::string& key,
55 const std::string& specific, 55 const std::string& specific,
56 std::string* contents); 56 const std::string& contents);
57 57
58 // Populate the results for a source file's content in response to the 58 // Populate the results for a source file's content in response to the
59 // "requestFileSource" call. Highlight the part of the source which 59 // "requestFileSource" call. Highlight the part of the source which
60 // corresponds to the given |line_number|. 60 // corresponds to the given |line_number|.
61 void GetSourceFileCallback(base::DictionaryValue* results, 61 void GetSourceFileCallback(base::DictionaryValue* results,
62 int line_number, 62 int line_number,
63 std::string* contents); 63 const std::string& contents);
64 64
65 // The profile with which this Handler is associated. 65 // The profile with which this Handler is associated.
66 Profile* profile_; 66 Profile* profile_;
67 67
68 DISALLOW_COPY_AND_ASSIGN(ExtensionErrorHandler); 68 DISALLOW_COPY_AND_ASSIGN(ExtensionErrorHandler);
69 }; 69 };
70 70
71 } // namespace extensions 71 } // namespace extensions
72 72
73 #endif // CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_ERROR_HANDLER_H_ 73 #endif // CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_ERROR_HANDLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/image_loader.cc ('k') | chrome/browser/ui/webui/extensions/extension_error_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698