Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/PluginClientBase.cpp

Issue 11013110: Cleanup (Closed)
Patch Set: More refactoring. Removing main thread, tab counting. Implementing SetPref and GetPref. Addressing … Created July 9, 2013, 12:59 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/plugin/PluginClientBase.cpp
===================================================================
--- a/src/plugin/PluginClientBase.cpp
+++ b/src/plugin/PluginClientBase.cpp
@@ -42,9 +42,7 @@
bool CPluginClientBase::IsValidDomain(const CString& domain)
{
- return domain != ABPDOMAIN &&
- domain != USERS_HOST &&
- domain != L"about:blank" &&
+ return domain != L"about:blank" &&
domain != L"about:tabs" &&
domain.Find(L"javascript:") != 0 &&
!domain.IsEmpty();

Powered by Google App Engine
This is Rietveld