OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SdchManager
(Results
1 - 4
of
4
) sorted by null
/external/chromium/net/base/
sdch_manager.cc
20
const size_t
SdchManager
::kMaxDictionarySize = 1000000;
23
const size_t
SdchManager
::kMaxDictionaryCount = 20;
26
SdchManager
*
SdchManager
::global_;
29
SdchManager
::Dictionary::Dictionary(const std::string& dictionary_text,
46
SdchManager
::Dictionary::~Dictionary() {
49
bool
SdchManager
::Dictionary::CanAdvertise(const GURL& target_url) {
50
if (!
SdchManager
::Global()->IsInSupportedDomain(target_url))
81
bool
SdchManager
::Dictionary::CanSet(const std::string& domain,
85
if (!
SdchManager
::Global()->IsInSupportedDomain(dictionary_url)
[
all
...]
sdch_manager.h
8
// Exactly one instance of
SdchManager
is built, and all references are made
11
// The
SdchManager
maintains a collection of memory resident dictionaries. It
38
// The
SdchManager
class allows registration to support this interface.
49
// and then calling back to AddSdchDictionary() to the
SdchManager
instance.
57
class
SdchManager
{
171
friend class
SdchManager
; // Only manager can construct an instance.
233
SdchManager
();
234
~
SdchManager
();
240
static
SdchManager
* Global();
250
// domain. Function assumes the existence of a global
SdchManager
instance
[
all
...]
/external/chromium_org/net/base/
sdch_manager.cc
20
const size_t
SdchManager
::kMaxDictionarySize = 1000000;
23
const size_t
SdchManager
::kMaxDictionaryCount = 20;
26
SdchManager
*
SdchManager
::global_ = NULL;
29
bool
SdchManager
::g_sdch_enabled_ = true;
32
SdchManager
::Dictionary::Dictionary(const std::string& dictionary_text,
49
SdchManager
::Dictionary::~Dictionary() {
52
bool
SdchManager
::Dictionary::CanAdvertise(const GURL& target_url) {
53
if (!
SdchManager
::Global()->IsInSupportedDomain(target_url))
84
bool
SdchManager
::Dictionary::CanSet(const std::string& domain
[
all
...]
sdch_manager.h
8
// Exactly one instance of
SdchManager
is built, and all references are made
11
// The
SdchManager
maintains a collection of memory resident dictionaries. It
39
// The
SdchManager
class allows registration to support this interface.
50
// and then calling back to AddSdchDictionary() to the
SdchManager
instance.
58
class NET_EXPORT
SdchManager
: public NON_EXPORTED_BASE(base::NonThreadSafe) {
172
friend class
SdchManager
; // Only manager can construct an instance.
234
SdchManager
();
235
~
SdchManager
();
241
static
SdchManager
* Global();
342
static
SdchManager
* global_
[
all
...]
Completed in 584 milliseconds