diff options
| author | tkent@chromium.org <tkent@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2014-08-10 15:47:22 +0000 |
|---|---|---|
| committer | tkent@chromium.org <tkent@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2014-08-10 15:47:22 +0000 |
| commit | 4897d97def2ed4565f756fe206fe6ee577274a54 (patch) | |
| tree | b45d8915deeb7f01fc2f46aaf2bd63d6c040efbe /third_party/WebKit/public/web/WebSecurityOrigin.h | |
| parent | f42d1da196df8a7cfd74478cc752a069bce38edf (diff) | |
| download | chromium_src-4897d97def2ed4565f756fe206fe6ee577274a54.zip chromium_src-4897d97def2ed4565f756fe206fe6ee577274a54.tar.gz chromium_src-4897d97def2ed4565f756fe206fe6ee577274a54.tar.bz2 | |
Cleanup namespace usage in public/web/Web[N-Z]*.h.
- Merge multiple |namespace blink {}| blocks
- Remove unnecessary blink:: prefixes
- Make blank lines consistent
BUG=
Review URL: https://codereview.chromium.org/454103003
git-svn-id: svn://svn.chromium.org/blink/trunk@179893 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/public/web/WebSecurityOrigin.h')
| -rw-r--r-- | third_party/WebKit/public/web/WebSecurityOrigin.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/third_party/WebKit/public/web/WebSecurityOrigin.h b/third_party/WebKit/public/web/WebSecurityOrigin.h index 368060f..0a3474d 100644 --- a/third_party/WebKit/public/web/WebSecurityOrigin.h +++ b/third_party/WebKit/public/web/WebSecurityOrigin.h @@ -34,12 +34,12 @@ #include "../platform/WebCommon.h" #if BLINK_IMPLEMENTATION -namespace blink { class SecurityOrigin; } namespace WTF { template <typename T> class PassRefPtr; } #endif namespace blink { +class SecurityOrigin; class WebSecurityOriginPrivate; class WebString; class WebURL; @@ -107,10 +107,10 @@ public: BLINK_EXPORT void grantLoadLocalResources() const; #if BLINK_IMPLEMENTATION - WebSecurityOrigin(const WTF::PassRefPtr<blink::SecurityOrigin>&); - WebSecurityOrigin& operator=(const WTF::PassRefPtr<blink::SecurityOrigin>&); - operator WTF::PassRefPtr<blink::SecurityOrigin>() const; - blink::SecurityOrigin* get() const; + WebSecurityOrigin(const WTF::PassRefPtr<SecurityOrigin>&); + WebSecurityOrigin& operator=(const WTF::PassRefPtr<SecurityOrigin>&); + operator WTF::PassRefPtr<SecurityOrigin>() const; + SecurityOrigin* get() const; #endif private: |
