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

Side by Side Diff: content/shell/renderer/test_runner/spell_check_client.cc

Issue 566833002: Update WebTask in chromium c++ style (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resolved build error Created 6 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "content/shell/renderer/test_runner/spell_check_client.h" 5 #include "content/shell/renderer/test_runner/spell_check_client.h"
6 6
7 #include "content/shell/renderer/test_runner/WebTestDelegate.h" 7 #include "content/shell/renderer/test_runner/WebTestDelegate.h"
8 #include "content/shell/renderer/test_runner/mock_grammar_check.h" 8 #include "content/shell/renderer/test_runner/mock_grammar_check.h"
9 #include "content/shell/renderer/test_runner/web_test_proxy.h" 9 #include "content/shell/renderer/test_runner/web_test_proxy.h"
10 #include "third_party/WebKit/public/web/WebTextCheckingCompletion.h" 10 #include "third_party/WebKit/public/web/WebTextCheckingCompletion.h"
11 #include "third_party/WebKit/public/web/WebTextCheckingResult.h" 11 #include "third_party/WebKit/public/web/WebTextCheckingResult.h"
12 12
13 namespace content { 13 namespace content {
14 14
15 namespace { 15 namespace {
16 16
17 class HostMethodTask : public WebMethodTask<SpellCheckClient> { 17 class HostMethodTask : public WebMethodTask<SpellCheckClient> {
18 public: 18 public:
19 typedef void (SpellCheckClient::*CallbackMethodType)(); 19 typedef void (SpellCheckClient::*CallbackMethodType)();
20 HostMethodTask(SpellCheckClient* object, CallbackMethodType callback) 20 HostMethodTask(SpellCheckClient* object, CallbackMethodType callback)
21 : WebMethodTask<SpellCheckClient>(object), callback_(callback) {} 21 : WebMethodTask<SpellCheckClient>(object), callback_(callback) {}
22 22
23 virtual ~HostMethodTask() {} 23 virtual ~HostMethodTask() {}
24 24
25 virtual void runIfValid() OVERRIDE { (m_object->*callback_)(); } 25 virtual void RunIfValid() OVERRIDE { (object_->*callback_)(); }
26 26
27 private: 27 private:
28 CallbackMethodType callback_; 28 CallbackMethodType callback_;
29 29
30 DISALLOW_COPY_AND_ASSIGN(HostMethodTask); 30 DISALLOW_COPY_AND_ASSIGN(HostMethodTask);
31 }; 31 };
32 32
33 } // namespace 33 } // namespace
34 34
35 SpellCheckClient::SpellCheckClient(WebTestProxyBase* web_test_proxy) 35 SpellCheckClient::SpellCheckClient(WebTestProxyBase* web_test_proxy)
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 blink::WebString SpellCheckClient::autoCorrectWord( 143 blink::WebString SpellCheckClient::autoCorrectWord(
144 const blink::WebString& word) { 144 const blink::WebString& word) {
145 // Returns an empty string as Mac WebKit ('WebKitSupport/WebEditorClient.mm') 145 // Returns an empty string as Mac WebKit ('WebKitSupport/WebEditorClient.mm')
146 // does. (If this function returns a non-empty string, WebKit replaces the 146 // does. (If this function returns a non-empty string, WebKit replaces the
147 // given misspelled string with the result one. This process executes some 147 // given misspelled string with the result one. This process executes some
148 // editor commands and causes layout-test failures.) 148 // editor commands and causes layout-test failures.)
149 return blink::WebString(); 149 return blink::WebString();
150 } 150 }
151 151
152 } // namespace content 152 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/renderer/test_runner/spell_check_client.h ('k') | content/shell/renderer/test_runner/test_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698