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

Side by Side Diff: Source/web/WebOptionElement.cpp

Issue 471503002: Cleanup namespace usage in Source/web/Web[I-Z]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/web/WebNotification.cpp ('k') | Source/web/WebPagePopupImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 19 matching lines...) Expand all
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "public/web/WebOptionElement.h" 32 #include "public/web/WebOptionElement.h"
33 33
34 #include "core/HTMLNames.h" 34 #include "core/HTMLNames.h"
35 #include "core/html/HTMLOptionElement.h" 35 #include "core/html/HTMLOptionElement.h"
36 #include "core/html/HTMLSelectElement.h" 36 #include "core/html/HTMLSelectElement.h"
37 #include "public/platform/WebString.h" 37 #include "public/platform/WebString.h"
38 #include "wtf/PassRefPtr.h" 38 #include "wtf/PassRefPtr.h"
39 39
40 using namespace blink;
41 using namespace HTMLNames;
42
43 namespace blink { 40 namespace blink {
44 41
45 void WebOptionElement::setValue(const WebString& newValue) 42 void WebOptionElement::setValue(const WebString& newValue)
46 { 43 {
47 unwrap<HTMLOptionElement>()->setValue(newValue); 44 unwrap<HTMLOptionElement>()->setValue(newValue);
48 } 45 }
49 46
50 WebString WebOptionElement::value() const 47 WebString WebOptionElement::value() const
51 { 48 {
52 return constUnwrap<HTMLOptionElement>()->value(); 49 return constUnwrap<HTMLOptionElement>()->value();
(...skipping 29 matching lines...) Expand all
82 m_private = elem; 79 m_private = elem;
83 return *this; 80 return *this;
84 } 81 }
85 82
86 WebOptionElement::operator PassRefPtrWillBeRawPtr<HTMLOptionElement>() const 83 WebOptionElement::operator PassRefPtrWillBeRawPtr<HTMLOptionElement>() const
87 { 84 {
88 return toHTMLOptionElement(m_private.get()); 85 return toHTMLOptionElement(m_private.get());
89 } 86 }
90 87
91 } // namespace blink 88 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebNotification.cpp ('k') | Source/web/WebPagePopupImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698