HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 801 - 825 of 4795) sorted by null

<<31323334353637383940>>

  /external/chromium_org/content/child/indexed_db/
indexed_db_message_filter.h 13 namespace base { namespace
15 } // namespace base
41 scoped_refptr<base::MessageLoopProxy> main_thread_loop_proxy_;
  /external/chromium_org/content/public/browser/
browser_child_process_host.h 8 #include "base/process/kill.h"
9 #include "base/process/launch.h"
10 #include "base/process/process_handle.h"
11 #include "base/process/process_metrics.h"
12 #include "base/strings/string16.h"
20 namespace base { namespace
51 const base::EnvironmentVector& environ,
64 virtual base::TerminationStatus GetTerminationStatus(int* exit_code) = 0;
74 virtual void SetHandle(base::ProcessHandle handle) = 0;
78 static base::ProcessMetrics::PortProvider* GetPortProvider()
    [all...]
child_process_security_policy.h 10 #include "base/basictypes.h"
13 namespace base { namespace
47 virtual void GrantReadFile(int child_id, const base::FilePath& file) = 0;
52 const base::FilePath& file) = 0;
56 const base::FilePath& file) = 0;
64 virtual bool CanReadFile(int child_id, const base::FilePath& file) = 0;
65 virtual bool CanWriteFile(int child_id, const base::FilePath& file) = 0;
66 virtual bool CanCreateFile(int child_id, const base::FilePath& file) = 0;
67 virtual bool CanCreateWriteFile(int child_id, const base::FilePath& file) = 0;
indexed_db_context.h 10 #include "base/basictypes.h"
11 #include "base/files/file_path.h"
12 #include "base/memory/ref_counted.h"
16 namespace base { namespace
25 class IndexedDBContext : public base::RefCountedThreadSafe<IndexedDBContext> {
28 virtual base::TaskRunner* TaskRunner() const = 0;
34 virtual base::Time GetOriginLastModified(const GURL& origin_url) = 0;
40 virtual base::FilePath GetFilePathForTesting(
44 base::SequencedTaskRunner* task_runner) = 0;
47 friend class base::RefCountedThreadSafe<IndexedDBContext>
    [all...]
plugin_data_remover.h 10 #include "base/time/time.h"
13 namespace base { namespace
28 virtual base::WaitableEvent* StartRemoving(base::Time begin_time) = 0;
plugin_service.h 11 #include "base/callback.h"
12 #include "base/strings/string16.h"
17 namespace base { namespace
36 typedef base::Callback<void(const std::vector<WebPluginInfo>&)>
86 virtual bool GetPluginInfoByPath(const base::FilePath& plugin_path,
93 const base::FilePath& plugin_path) = 0;
103 const base::FilePath& plugin_path) = 0;
109 virtual void ForcePluginShutdown(const base::FilePath& plugin_path) = 0;
113 virtual bool IsPluginUnstable(const base::FilePath& plugin_path) = 0;
121 virtual void AddExtraPluginPath(const base::FilePath& path) = 0
    [all...]
plugin_service_filter.h 10 namespace base { namespace
35 const base::FilePath& path) = 0;
profiler_controller.h 11 #include "base/tracked_objects.h"
15 namespace base { namespace
utility_process_host.h 8 #include "base/process/launch.h"
12 namespace base { namespace
33 public base::SupportsWeakPtr<UtilityProcessHost> {
38 base::SequencedTaskRunner* client_task_runner);
51 virtual void SetExposedDir(const base::FilePath& dir) = 0;
67 virtual void SetEnv(const base::EnvironmentVector& env) = 0;
  /external/chromium_org/content/public/common/
page_state.h 15 namespace base { namespace
38 const base::FilePath* optional_body_file_path);
46 std::vector<base::FilePath> GetReferencedFiles() const;
  /external/chromium_org/content/public/renderer/
render_thread.h 8 #include "base/basictypes.h"
9 #include "base/callback.h"
10 #include "base/memory/shared_memory.h"
21 namespace base { namespace
49 virtual base::MessageLoop* GetMessageLoop() = 0;
53 virtual scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy() = 0;
88 virtual scoped_ptr<base::SharedMemory> HostAllocateSharedMemoryBuffer(
111 virtual int PostTaskToAllWebWorkers(const base::Closure& closure) = 0;
  /external/chromium_org/content/public/test/
test_launcher.h 10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
15 namespace base { namespace
38 const base::FilePath& temp_data_dir) = 0;
39 virtual void PreRunMessageLoop(base::RunLoop* run_loop) {}
unittest_test_suite.h 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h"
11 namespace base { namespace
25 explicit UnitTestTestSuite(base::TestSuite* test_suite);
31 scoped_ptr<base::TestSuite> test_suite_;
  /external/chromium_org/content/renderer/android/
synchronous_compositor_factory.h 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h"
11 namespace base { namespace
36 virtual scoped_refptr<base::MessageLoopProxy>
  /external/chromium_org/content/test/
content_browser_test_utils.h 8 #include "base/memory/ref_counted.h"
12 namespace base { namespace
33 base::FilePath GetTestFilePath(const char* dir, const char* file);
  /external/chromium_org/content/test/plugin/
plugin_thread_async_call_test.h 10 namespace base { namespace
33 // base::Thread needs one of these.
34 base::ShadowingAtExitManager* at_exit_manager_;
  /external/chromium_org/courgette/
difference_estimator_unittest.cc 20 DifferenceEstimator::Base* base = local
24 EXPECT_EQ(0U, difference_estimator.Measure(base, subject));
31 DifferenceEstimator::Base* base = local
35 EXPECT_EQ(10U, difference_estimator.Measure(base, subject));
42 DifferenceEstimator::Base* base = local
46 EXPECT_EQ(1U, difference_estimator.Measure(base, subject));
53 DifferenceEstimator::Base* base local
    [all...]
  /external/chromium_org/extensions/browser/
file_reader.h 10 #include "base/callback.h"
11 #include "base/memory/ref_counted.h"
14 namespace base { namespace
22 class FileReader : public base::RefCountedThreadSafe<FileReader> {
25 typedef base::Callback<void(bool, const std::string&)> Callback;
35 friend class base::RefCountedThreadSafe<FileReader>;
43 base::MessageLoop* origin_loop_;
  /external/chromium_org/google_apis/gaia/
oauth2_access_token_consumer.h 12 namespace base { namespace
24 const base::Time& expiration_time) {}
  /external/chromium_org/gpu/command_buffer/common/
buffer.h 10 namespace base { namespace
26 base::SharedMemory* shared_memory;
  /external/chromium_org/media/audio/
fake_audio_consumer.h 8 #include "base/callback_forward.h"
9 #include "base/memory/ref_counted.h"
10 #include "media/base/media_export.h"
12 namespace base { namespace
28 FakeAudioConsumer(const scoped_refptr<base::MessageLoopProxy>& worker_loop,
34 typedef base::Callback<void(AudioBus* audio_bus)> ReadCB;
scoped_loop_observer.h 8 #include "base/memory/ref_counted.h"
9 #include "base/message_loop/message_loop.h"
10 #include "base/message_loop/message_loop_proxy.h"
12 namespace base { namespace
18 // A common base class for AudioOutputDevice and AudioInputDevice that manages
25 : public base::MessageLoop::DestructionObserver {
28 const scoped_refptr<base::MessageLoopProxy>& message_loop);
34 const scoped_refptr<base::MessageLoopProxy>& message_loop() { return loop_; }
39 void ObserveLoopDestruction(bool enable, base::WaitableEvent* done);
43 scoped_refptr<base::MessageLoopProxy> loop_
    [all...]
  /external/chromium_org/media/base/android/
media_player_listener.h 10 #include "base/android/scoped_java_ref.h"
11 #include "base/memory/ref_counted.h"
12 #include "base/memory/weak_ptr.h"
14 namespace base { namespace
30 const scoped_refptr<base::MessageLoopProxy>& message_loop,
31 base::WeakPtr<MediaPlayerBridge> media_player);
54 scoped_refptr<base::MessageLoopProxy> message_loop_;
57 base::WeakPtr<MediaPlayerBridge> media_player_;
59 base::android::ScopedJavaGlobalRef<jobject> j_media_player_listener_;
  /external/chromium_org/media/base/
media_file_checker.h 8 #include "base/basictypes.h"
9 #include "base/files/scoped_platform_file_closer.h"
10 #include "base/platform_file.h"
11 #include "media/base/media_export.h"
13 namespace base { namespace
24 explicit MediaFileChecker(const base::PlatformFile& file);
30 bool Start(base::TimeDelta check_time);
33 base::PlatformFile file_;
34 base::ScopedPlatformFileCloser file_closer_;
  /external/chromium_org/net/base/
net_log_logger.h 10 #include "base/memory/scoped_handle.h"
11 #include "net/base/net_log.h"
13 namespace base { namespace
29 NetLogLogger(FILE* file, const base::Value& constants);
44 static base::DictionaryValue* GetConstants();

Completed in 577 milliseconds

<<31323334353637383940>>