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

Unified Diff: chrome/renderer/autofill/password_generation_agent_browsertest.cc

Issue 63273002: Rename WebKit namespace to blink (part 4) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/autofill/password_generation_agent_browsertest.cc
diff --git a/chrome/renderer/autofill/password_generation_agent_browsertest.cc b/chrome/renderer/autofill/password_generation_agent_browsertest.cc
index 5c6f906d3a8c5a33da63724cdfcb7fbc87410005..8447cd40c04e05deaae66497a628a3e00ead38cc 100644
--- a/chrome/renderer/autofill/password_generation_agent_browsertest.cc
+++ b/chrome/renderer/autofill/password_generation_agent_browsertest.cc
@@ -16,11 +16,11 @@
#include "third_party/WebKit/public/web/WebDocument.h"
#include "third_party/WebKit/public/web/WebWidget.h"
-using WebKit::WebDocument;
-using WebKit::WebElement;
-using WebKit::WebInputElement;
-using WebKit::WebNode;
-using WebKit::WebString;
+using blink::WebDocument;
+using blink::WebElement;
+using blink::WebInputElement;
+using blink::WebNode;
+using blink::WebString;
namespace autofill {
@@ -44,7 +44,7 @@ class TestPasswordGenerationAgent : public PasswordGenerationAgent {
}
protected:
- virtual bool ShouldAnalyzeDocument(const WebKit::WebDocument& document) const
+ virtual bool ShouldAnalyzeDocument(const blink::WebDocument& document) const
OVERRIDE {
return true;
}
@@ -78,15 +78,15 @@ class PasswordGenerationAgentTest : public ChromeRenderViewTest {
ChromeRenderViewTest::TearDown();
}
- void SimulateClickOnDecoration(WebKit::WebInputElement* input_element) {
+ void SimulateClickOnDecoration(blink::WebInputElement* input_element) {
generation_manager_->ClearMessages();
- WebKit::WebElement decoration =
+ blink::WebElement decoration =
input_element->decorationElementFor(generation_manager_.get());
decoration.simulateClick();
}
- bool DecorationIsVisible(WebKit::WebInputElement* input_element) {
- WebKit::WebElement decoration =
+ bool DecorationIsVisible(blink::WebInputElement* input_element) {
+ blink::WebElement decoration =
input_element->decorationElementFor(generation_manager_.get());
return decoration.hasNonEmptyBoundingBox();
}
« no previous file with comments | « chrome/renderer/autofill/password_autofill_agent_browsertest.cc ('k') | chrome/renderer/chrome_content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698